@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --bg-deep: #050505;
    --bg-dark: #0a0a0a;
    --accent-blue: #00f2ff;
    --accent-violet: #8a2be2;
    --accent-cyan: #00ffff;
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
    --glow-blue: 0 0 15px rgba(0, 242, 255, 0.5);
    --glow-violet: 0 0 15px rgba(138, 43, 226, 0.5);
    --nav-height: 80px;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-deep);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-blue);
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.glow-text-blue {
    text-shadow: var(--glow-blue);
    color: var(--accent-blue);
}

.glow-text-violet {
    text-shadow: var(--glow-violet);
    color: var(--accent-violet);
}

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

section {
    padding: 100px 0;
}

.nav-wrapper {
    width: 100%;
}

/* Navbar */
header {
    height: var(--nav-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(5, 5, 5, 0.8);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: var(--accent-blue);
}

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

.nav-links a:hover {
    color: var(--accent-blue);
    text-shadow: var(--glow-blue);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(0, 242, 255, 0.05) 0%, rgba(5, 5, 5, 1) 70%);
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

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

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin-bottom: 40px;
    color: var(--text-muted);
}

.btn-group {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-blue);
    color: #000;
    box-shadow: var(--glow-blue);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(0, 242, 255, 0.8);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-blue);
    color: var(--accent-blue);
}

.btn-outline:hover {
    background: rgba(0, 242, 255, 0.1);
    transform: translateY(-3px);
}

/* Information Banner */
.info-banner {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(0, 242, 255, 0.2);
    padding: 40px;
    border-radius: 20px;
    margin: -50px auto 100px;
    max-width: 1000px;
    position: relative;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.info-banner h3 {
    color: var(--accent-blue);
    margin-bottom: 15px;
}

.info-banner p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

/* Footer */
footer {
    padding: 80px 0 40px;
    background: #080808;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links h4 {
    margin-bottom: 25px;
    color: #fff;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-notice {
    margin-top: 20px;
    font-style: italic;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-content {
    width: 90%;
    height: 85%;
    max-width: 1200px;
    background: #000;
    border: 1px solid var(--accent-blue);
    box-shadow: var(--glow-blue);
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Toast */
#cookie-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #111;
    border: 1px solid var(--accent-blue);
    padding: 20px;
    border-radius: 12px;
    z-index: 1500;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 350px;
    box-shadow: var(--glow-blue);
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
