* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #1a1a2e;
    background-color: #f5f5f5;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
.header {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    color: #fff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 60px;
    width: auto;
    border-radius: 8px;
}

.site-title {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #c9a84c, #e94560);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: #ccc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    letter-spacing: 1px;
}

.nav a:hover {
    color: #c9a84c;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 50%, #1a1a2e 100%);
    color: #fff;
    text-align: center;
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(233, 69, 96, 0.15) 0%, transparent 70%);
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: 3px;
    position: relative;
}

.hero p {
    font-size: 1.2rem;
    color: #aaa;
    max-width: 700px;
    margin: 0 auto 30px;
    position: relative;
}

.btn {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #e94560, #c9a84c);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
}

/* SECTIONS */
.section {
    padding: 80px 0;
    background: #fff;
}

.section.alt {
    background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
}

.section-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a1a2e;
    position: relative;
    padding-bottom: 15px;
}

.section-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #e94560, #c9a84c);
    border-radius: 2px;
}

.section-content p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* FOOTER */
.footer {
    background: #1a1a2e;
    color: #888;
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #0f3460;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .section-content h2 {
        font-size: 2rem;
    }

    .nav {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
}