/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(135deg, #0a1a2a 0%, #0c2b4b 100%);
    color: #f0f8ff;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* Header & Nav */
header {
    background-color: rgba(10, 26, 42, 0.95);
    border-bottom: 1px solid #1e4a7a;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #00d4ff;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 25px;
}

.nav-menu a {
    color: #cce7ff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #00d4ff;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero */
.hero {
    background: radial-gradient(circle at center, #0c2b4b 0%, #0a1a2a 100%);
    padding: 80px 20px 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="%2300d4ff" opacity="0.03"/></svg>');
    background-size: cover;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 212, 255, 0.3);
}

.hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #b3e0ff;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(90deg, #00d4ff, #0088cc);
    color: #0a1a2a;
    padding: 18px 45px;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.4);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 212, 255, 0.6);
}

/* Sticky Play Button */
.sticky-play {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.sticky-play a {
    display: block;
    background: linear-gradient(90deg, #ff3366, #cc0044);
    color: white;
    padding: 15px 25px;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(255, 51, 102, 0.5);
    transition: all 0.3s;
}

.sticky-play a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 51, 102, 0.7);
}

/* Main Content */
main {
    flex: 1;
    padding: 60px 20px;
}

.content-section {
    background: rgba(20, 40, 60, 0.7);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.content-section h2 {
    color: #00d4ff;
    margin-bottom: 25px;
    font-size: 2.2rem;
}

.content-section h3 {
    color: #66c2ff;
    margin: 20px 0 15px;
    font-size: 1.6rem;
}

.content-section p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.content-section ul, .content-section ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.content-section li {
    margin-bottom: 10px;
}

.highlight {
    background: rgba(0, 212, 255, 0.1);
    border-left: 4px solid #00d4ff;
    padding: 15px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
}

/* Footer */
footer {
    background-color: #0a1a2a;
    border-top: 1px solid #1e4a7a;
    padding: 40px 20px;
    text-align: center;
}

.security-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.security-logos img {
    height: 50px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.footer-links {
    margin: 25px 0;
}

.footer-links a {
    color: #88c1ff;
    margin: 0 15px;
    text-decoration: none;
}

.footer-links a:hover {
    color: #00d4ff;
    text-decoration: underline;
}

.copyright {
    color: #88c1ff;
    font-size: 0.9rem;
    margin-top: 20px;
}

.help-links {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #aaa;
}

.help-links a {
    color: #ff9999;
}

/* Legal Pages */
.legal-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: #0a1a2a;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        border-top: 1px solid #1e4a7a;
    }
    .nav-menu.active {
        right: 0;
    }
    .nav-menu li {
        margin: 15px 0;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1.1rem;
    }
    .content-section {
        padding: 25px;
    }
    .sticky-play {
        bottom: 20px;
        right: 20px;
    }
    .sticky-play a {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}