/* === BASE STYLES === */:root {
    --primary-electric: #ffbe3e;
    --primary-cyan: #ffbe3e;
    --accent-neon: #ffbe3e;
    --accent-pink: #ffbe3e;
    --deep-ocean: #12151e;
    --ocean-dark: #1e222f;
    --ocean-mid: #1e222f;
    --shark-gray: #1e222f;
    --text-light: #E8F4F8;
    --text-white: #FFFFFF;
    --shadow-glow: rgba(255, 190, 62, 0.4);
    --shadow-pink: rgba(255, 190, 62, 0.3);
}

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

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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--deep-ocean) 0%, var(--ocean-dark) 50%, var(--ocean-mid) 100%);
    color: var(--text-light);
    line-height: 1.7;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 190, 62, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 190, 62, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
}

h1, h2, h3, h4 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--text-white);
}

h1 {
    font-size: clamp(2rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-electric) 0%, var(--accent-neon) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px var(--shadow-glow);
}

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

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-electric) 0%, var(--accent-neon) 100%);
    box-shadow: 0 0 20px var(--shadow-glow);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1.5rem;
    color: var(--primary-cyan);
}

p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

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

a:hover {
    color: var(--accent-neon);
    text-shadow: 0 0 10px var(--shadow-pink);
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-electric) 0%, var(--accent-neon) 100%);
    color: #000000;
    box-shadow: 0 10px 40px var(--shadow-glow), 0 5px 15px var(--shadow-pink);
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px var(--shadow-glow), 0 8px 20px var(--shadow-pink);
}

.card {
    background: linear-gradient(145deg, rgba(30, 34, 47, 0.6) 0%, rgba(18, 21, 30, 0.8) 100%);
    border: 2px solid rgba(255, 190, 62, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-electric), var(--accent-neon), var(--primary-cyan));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-cyan);
    box-shadow: 0 20px 60px rgba(255, 190, 62, 0.3), 0 10px 30px rgba(255, 190, 62, 0.2);
}

.card:hover::before {
    opacity: 0.3;
}

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

.content-image img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(255, 190, 62, 0.2);
    border: 2px solid rgba(255, 190, 62, 0.3);
}

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

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

.table-responsive {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

table {
    width: 100%;
    background: rgba(18, 21, 30, 0.8);
    border-collapse: collapse;
}

th, td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 190, 62, 0.1);
}

th {
    background: linear-gradient(135deg, var(--ocean-mid) 0%, var(--shark-gray) 100%);
    color: var(--primary-cyan);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* === LAYOUT STYLES === */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(18, 21, 30, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(255, 190, 62, 0.2);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

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

.logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px var(--shadow-glow));
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

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

.hamburger span {
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-electric), var(--accent-neon));
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger:hover span {
    box-shadow: 0 0 10px var(--shadow-glow);
}

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

nav a {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

nav a:hover {
    background: rgba(255, 190, 62, 0.1);
    color: var(--primary-cyan);
    text-shadow: 0 0 10px var(--shadow-glow);
}

header .cta-button {
    max-width: 200px;
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

footer {
    background: linear-gradient(135deg, var(--deep-ocean) 0%, #0a0c12 100%);
    border-top: 2px solid rgba(255, 190, 62, 0.2);
    padding: 4rem 0 2rem;
    margin-top: 6rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-electric), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

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

.footer-section h3 {
    color: var(--primary-cyan);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

.footer-menu li {
    margin-bottom: 0.8rem;
}

.footer-menu a {
    color: var(--text-light);
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: var(--primary-cyan);
    padding-left: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 190, 62, 0.1);
    color: rgba(232, 244, 248, 0.6);
}

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

    .hamburger {
        display: flex;
        order: 3;
    }

    .logo {
        order: 1;
    }

    nav {
        order: 4;
        width: 100%;
        margin-top: 1rem;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0;
        background: rgba(18, 21, 30, 0.98);
        border-radius: 15px;
        padding: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    nav a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 190, 62, 0.1);
    }

    header .cta-button {
        order: 2;
        max-width: none;
        width: 100%;
        margin-top: 1rem;
        order: 5;
    }
}

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

    .hamburger {
        display: flex;
        order: 3;
    }

    .logo {
        order: 1;
    }

    nav {
        order: 4;
        width: 100%;
        margin-top: 1rem;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0;
        background: rgba(18, 21, 30, 0.98);
        border-radius: 15px;
        padding: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    nav a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 190, 62, 0.1);
    }

    header .cta-button {
        order: 2;
        max-width: none;
        width: 100%;
        margin-top: 1rem;
        order: 5;
    }
}