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

:root {
    --dark-bg: #0a0e27;
    --darker-bg: #050819;
    --card-bg: rgba(15, 23, 42, 0.8);
    --primary-glow: #00d4ff;
    --secondary-glow: #7c3aed;
    --accent-glow: #f59e0b;
    --text-light: #e2e8f0;
    --text-dim: #94a3b8;
    --glow-blue: rgba(0, 212, 255, 0.5);
    --glow-purple: rgba(124, 58, 237, 0.5);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 50%, #0f1729 100%);
    background-attachment: fixed;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, var(--glow-purple) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, var(--glow-blue) 0%, transparent 50%);
    opacity: 0.3;
    pointer-events: none;
    z-index: -1;
}

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

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 212, 255, 0.1);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(10, 14, 39, 0.95);
    box-shadow: 0 4px 30px rgba(0, 212, 255, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 20px;
}

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-glow), var(--secondary-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    text-shadow: 0 0 30px var(--glow-blue);
    filter: drop-shadow(0 0 10px var(--glow-blue));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-glow);
    text-shadow: 0 0 10px var(--glow-blue);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-glow), var(--secondary-glow));
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--primary-glow);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-glow);
    border-radius: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px var(--glow-blue);
}

.hero {
    padding: 140px 0 100px;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 50%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    line-height: 1.2;
    filter: drop-shadow(0 0 30px var(--glow-blue));
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 30px var(--glow-blue));
    }
    50% {
        filter: drop-shadow(0 0 50px var(--glow-purple));
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--primary-glow);
    margin-bottom: 2rem;
    font-weight: 600;
    text-shadow: 0 0 20px var(--glow-blue);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.btn {
    padding: 0.9rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-glow), var(--secondary-glow));
    color: white;
    box-shadow: 0 4px 30px var(--glow-blue);
    border: none;
    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;
}

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

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

.btn-secondary {
    background: transparent;
    color: var(--primary-glow);
    border: 2px solid var(--primary-glow);
    box-shadow: 0 0 20px var(--glow-blue);
}

.btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--glow-blue);
}

section {
    padding: 80px 0;
}

section h2 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-glow), var(--secondary-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    filter: drop-shadow(0 0 20px var(--glow-blue));
}

.about {
    background: transparent;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dim);
}

.company-info-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.2), inset 0 0 30px rgba(0, 212, 255, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.company-info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

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

.company-info-card h3 {
    color: var(--primary-glow);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-shadow: 0 0 20px var(--glow-blue);
    position: relative;
    z-index: 1;
}

.info-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.info-label {
    color: var(--text-dim);
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    color: var(--text-light);
    font-size: 1.05rem;
    font-weight: 600;
}

.transparency {
    background: transparent;
    position: relative;
}

.transparency-content p {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dim);
    text-align: center;
}

.activities {
    background: transparent;
    position: relative;
}

.section-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dim);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.activity-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.activity-card:hover::before {
    opacity: 1;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 40px rgba(0, 212, 255, 0.3), 0 0 30px rgba(124, 58, 237, 0.2);
    border-color: rgba(0, 212, 255, 0.5);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.activity-card h3 {
    color: var(--primary-glow);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 0 15px var(--glow-blue);
    position: relative;
    z-index: 1;
}

.activity-card p {
    color: var(--text-dim);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.gaming-platform {
    background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
    color: white;
    position: relative;
}

.gaming-platform h2 {
    background: linear-gradient(135deg, var(--primary-glow), var(--secondary-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px var(--glow-purple));
}

.platform-content p {
    max-width: 900px;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dim);
    text-align: center;
}

.priorities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.priority-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.2), inset 0 0 20px rgba(0, 212, 255, 0.05);
    transition: all 0.3s ease;
}

.priority-item:hover {
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 6px 30px rgba(124, 58, 237, 0.3), inset 0 0 30px rgba(0, 212, 255, 0.1);
}

.priority-item h4 {
    color: var(--primary-glow);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-shadow: 0 0 15px var(--glow-blue);
}

.priority-item p {
    color: var(--text-dim);
    line-height: 1.6;
    font-size: 0.95rem;
}

.platform-notice {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 3rem;
    border-left: 4px solid var(--primary-glow);
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(10px);
}

.operational-model {
    background: transparent;
    position: relative;
}

.operational-content {
    max-width: 900px;
    margin: 0 auto;
}

.operational-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

.operational-list {
    list-style: none;
    margin-top: 2rem;
}

.operational-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-dim);
    line-height: 1.7;
}

.operational-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-glow);
    font-weight: bold;
    font-size: 1.3rem;
    text-shadow: 0 0 10px var(--glow-blue);
}

.digital-presence {
    background: transparent;
    position: relative;
}

.presence-content {
    max-width: 900px;
    margin: 0 auto;
}

.presence-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

.presence-list {
    list-style: none;
    margin-top: 2rem;
}

.presence-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-dim);
    line-height: 1.7;
}

.presence-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-glow);
    font-weight: bold;
    font-size: 1.5rem;
    text-shadow: 0 0 10px var(--glow-blue);
}

.security {
    background: transparent;
    position: relative;
}

.security-content p {
    max-width: 900px;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dim);
    text-align: center;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.security-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.security-item:hover {
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 0 6px 30px rgba(124, 58, 237, 0.2);
}

.security-item h4 {
    color: var(--primary-glow);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 0 15px var(--glow-blue);
}

.security-item p {
    color: var(--text-dim);
    line-height: 1.7;
}

.compliance {
    background: transparent;
    position: relative;
}

.compliance-content {
    max-width: 900px;
    margin: 0 auto;
}

.compliance-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

.compliance-list {
    list-style: none;
    margin: 2rem 0;
}

.compliance-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-dim);
    line-height: 1.7;
}

.compliance-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-glow);
    font-weight: bold;
    font-size: 1.3rem;
    text-shadow: 0 0 10px var(--glow-blue);
}

.contact {
    background: transparent;
    position: relative;
}

.contact-intro {
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dim);
}

.contact-note {
    margin-top: 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dim);
    font-style: italic;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--primary-glow);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px var(--glow-blue);
}

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--card-bg);
    color: var(--text-light);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-glow);
    box-shadow: 0 0 20px var(--glow-blue);
}

.form-group textarea {
    resize: vertical;
}

.contact-details h3 {
    color: var(--primary-glow);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-shadow: 0 0 20px var(--glow-blue);
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    display: block;
    color: var(--primary-glow);
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.contact-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-glow);
    text-shadow: 0 0 10px var(--glow-blue);
}

.contact-item span {
    color: var(--text-dim);
}

.footer {
    background: var(--darker-bg);
    color: white;
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 -4px 30px rgba(0, 212, 255, 0.1);
    position: relative;
}

.footer-content {
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-glow);
    text-shadow: 0 0 10px var(--glow-blue);
}

.footer-text p {
    color: var(--text-dim);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.business-notice {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem auto;
    max-width: 800px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(10px);
}

.copyright {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: var(--dark-bg);
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
        border: 1px solid rgba(0, 212, 255, 0.2);
        backdrop-filter: blur(20px);
        transition: left 0.3s ease;
        gap: 1.5rem;
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .activities-grid,
    .priorities-grid,
    .security-grid {
        grid-template-columns: 1fr;
    }

    section h2 {
        font-size: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .logo {
        font-size: 1.1rem;
    }

    section {
        padding: 60px 0;
    }
}
