/* =====================================================
   GLOBAL
===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: #000;
    font-family: Arial, sans-serif;
    color: #fff;
}

/* =====================================================
   STICKY HEADER
===================================================== */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 99999;
    background: #000;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
}

.header-logo svg {
    height: 32px;
}

.header-logo h1 {
    color: #fff;
    font-size: 24px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.lang {
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
}

.menu-btn {
    width: 26px;
    height: 18px;
    position: relative;
    cursor: pointer;
    display: none;
}
.menu-btn span {
    position: absolute;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    left: 0;
}
.menu-btn span:nth-child(1){top:0}
.menu-btn span:nth-child(2){top:7px}
.menu-btn span:nth-child(3){top:14px}

.main-navigation {
    display: flex;
}

.main-navigation .primary-menu {
    display: flex;
    list-style: none;
    gap: 20px;
}

.main-navigation a {
    color: #fff;
    text-decoration: none;
}

/* =====================================================
   SECURITY NOTICE
===================================================== */
.notice-bar {
    background: #031a3a;
    color: #fff;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.notice-bar a {
    color: #1da1ff;
    text-decoration: none;
    font-weight: 600;
}

.notice-close {
    font-size: 22px;
    cursor: pointer;
}

/* =====================================================
   HERO
===================================================== */
.hero {
    padding: 40px 18px;
    color: #fff;
}

.hero h1 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero p {
    color: #1da1ff;
    font-size: 16px;
    line-height: 1.6;
}

/* =====================================================
   WHO IS AGENT BUTTON
===================================================== */
.agent-btn-wrap {
    margin-top: 35px;
}
.agent-btn {
    position: relative;
    display: inline-block;
    padding: 16px 32px;
    font-size: 20px;
    font-weight: 900;
    color: #001b3f;
    background: linear-gradient(90deg,#007bff,#00ffd5);
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,255,213,.6);
    transition: transform 0.3s ease;
}
.agent-btn:hover {
    transform: translateY(-3px);
}
.agent-btn::after {
    content:"";
    position:absolute;
    left:8px;
    bottom:-8px;
    width:100%;
    height:100%;
    background:#000;
    border-radius:10px;
    z-index:-1;
}

/* =====================================================
   COOKIE BAR
===================================================== */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #031a3a;
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
}

.cookie-bar p {
    color: #fff;
    font-size: 14px;
    max-width: 70%;
}

.cookie-bar a {
    color: #1da1ff;
}

.cookie-btn {
    background: linear-gradient(90deg,#007bff,#00ffd5);
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 768px) {
    .menu-btn {
        display: block;
    }
    
    .main-navigation {
        position: fixed;
        top: 64px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 64px);
        background: #000;
        transition: left 0.3s ease;
    }
    
    .main-navigation.active {
        left: 0;
    }
    
    .main-navigation .primary-menu {
        flex-direction: column;
        padding: 20px;
    }
    
    .hero h1 {
        font-size: 24px;
    }
    
    .cookie-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .cookie-bar p {
        max-width: 100%;
    }
}