:root {
    --primary: #C8A165; /* Muga Gold */
    --secondary: #D32F2F; /* Gamusa Red */
    --accent: #388E3C; /* Tea Green */
    --bg-dark: #121212;
    --text: #ffffff;
    --text-muted: #aaaaaa;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, #2d3561 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, #5a3952 0%, transparent 40%);
    z-index: -1;
}

header {
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 4px;
    background: linear-gradient(to right, #ffffff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: var(--primary);
}

.container {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.hero {
    text-align: center;
    padding: 6rem 5%;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B9D, #FF8FB3);
    color: white;
    box-shadow: 0 10px 20px rgba(255, 107, 157, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 157, 0.5);
}

.content-box {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(20px);
}

h2 {
    color: var(--primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

footer {
    text-align: center;
    padding: 4rem 2rem;
    border-top: 1px solid var(--glass-border);
    margin-top: 4rem;
}

.footer-links {
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .content-box { padding: 1.5rem; }
}
