/* === BASE STYLES === */:root {
    --primary: #FF0080;
    --primary-dark: #CC0066;
    --secondary: #00D9FF;
    --accent: #FFD700;
    --dark: #0A0A14;
    --dark-blue: #1A1A2E;
    --dark-purple: #16213E;
    --text: #FFFFFF;
    --text-muted: #A0A0B8;
    --gradient-main: linear-gradient(135deg, #FF0080 0%, #7928CA 50%, #00D9FF 100%);
    --gradient-hero: linear-gradient(180deg, rgba(10,10,20,0.95) 0%, rgba(26,26,46,0.98) 100%);
    --shadow-sm: 0 2px 8px rgba(255,0,128,0.1);
    --shadow-md: 0 4px 16px rgba(255,0,128,0.2);
    --shadow-lg: 0 8px 32px rgba(255,0,128,0.3);
    --shadow-glow: 0 0 20px rgba(255,0,128,0.4);
}

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

html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.7;
}

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

h1, h2, h3, h4 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--secondary);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-main);
    border-radius: 2px;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: var(--text);
    margin-bottom: 1.25rem;
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--accent);
    margin-bottom: 1rem;
}

p {
    color: var(--text);
    margin-bottom: 1.25rem;
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary);
}

.btn {
    padding: 16px 40px;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient-main);
    color: var(--text);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.card {
    background: var(--dark-blue);
    border: 1px solid rgba(255,0,128,0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-main);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.card h4 {
    margin-top: 0;
}

.card p {
    color: var(--text-muted);
    margin-bottom: 0;
}

.content-image {
    max-width: 100%;
    margin: 1.5rem auto;
    text-align: center;
}

.content-image img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 8px;
}

.content-image.portrait img {
    max-height: 350px;
    max-width: 300px;
}

.content-image.wide img {
    max-height: 300px;
    max-width: 100%;
}

.content-image figcaption {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    max-width: 100%;
}

.table-responsive table {
    min-width: 100%;
}

/* === LAYOUT STYLES === */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10,10,20,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,0,128,0.2);
    padding: 1.25rem 0;
}

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

.logo img {
    max-height: 50px;
    width: auto;
    height: auto;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

header nav {
    flex: none;
}

header nav a {
    color: var(--text);
    font-weight: 500;
    position: relative;
}

header nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

header nav a:hover::after {
    width: 100%;
}

header .cta-button {
    padding: 12px 32px;
    font-size: 1rem;
    white-space: nowrap;
}

footer {
    background: var(--dark-purple);
    padding: 3rem 0 2rem;
    margin-top: 5rem;
    border-top: 2px solid var(--primary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section p {
    color: var(--text-muted);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
}

.accordion-body {
    padding: 0 1.5rem 0.3rem 1.5rem !important;
}

@media (max-width: 767px) {
    header .container {
        flex-wrap: wrap;
    }

    .hamburger {
        display: flex;
    }

    header nav {
        width: 100%;
        display: none;
    }

    header nav.active {
        display: block;
    }

    header nav ul {
        flex-direction: column;
        gap: 1rem;
        padding-top: 1rem;
    }

    header .cta-button {
        max-width: 200px;
        padding: 10px 20px;
        font-size: 0.875rem;
        text-overflow: ellipsis;
        overflow: hidden;
    }
}