/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #00d4aa;
    transition: all 0.3s ease;
}

a:hover {
    color: #00ffcc;
    text-shadow: 0 0 15px rgba(0, 212, 170, 0.6);
    transform: translateY(-2px);
}

h1, h2, h3 {
    margin-bottom: 20px;
    color: #2d3748;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
}

h1 {
    font-size: 4.5rem;
    background: linear-gradient(45deg, #00d4aa, #00ffcc, #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: neon-pulse 2.5s ease-in-out infinite alternate;
    text-shadow: 0 0 30px rgba(0, 212, 170, 0.8);
}

@keyframes neon-pulse {
    from { 
        filter: drop-shadow(0 0 15px rgba(0, 212, 170, 0.7));
        transform: scale(1);
    }
    to { 
        filter: drop-shadow(0 0 30px rgba(0, 255, 204, 0.9));
        transform: scale(1.02);
    }
}

h2 {
    font-size: 3rem;
    color: #2d3748;
    position: relative;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, #00d4aa, #00ffcc);
    border-radius: 2px;
    animation: slide-in 1.5s ease-out;
}

@keyframes slide-in {
    from { width: 0; }
    to { width: 60px; }
}

p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
}

ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}

ul li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    padding-left: 35px;
    position: relative;
}

ul li:before {
    content: "⚡";
    position: absolute;
    left: 0;
    top: 0;
    animation: electric-pulse 2.5s infinite;
    font-size: 1.3rem;
    color: #00d4aa;
}

@keyframes electric-pulse {
    0%, 20%, 50%, 80%, 100% { 
        transform: translateY(0) scale(1); 
        opacity: 1;
    }
    40% { 
        transform: translateY(-8px) scale(1.2); 
        opacity: 0.8;
    }
    60% { 
        transform: translateY(-4px) scale(1.1); 
        opacity: 0.9;
    }
}

/* Navigation Styles */
header.nav-header {
    background: linear-gradient(135deg, #2d3748, #4a5568, #1a202c);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 212, 170, 0.2);
    border-bottom: 3px solid rgba(0, 212, 170, 0.4);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

.logo {
    max-width: 160px;
    height: auto;
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 20px rgba(0, 212, 170, 0.5));
    flex-shrink: 0;
}

.logo:hover {
    transform: scale(1.05) rotate(-1deg);
    filter: drop-shadow(0 0 30px rgba(0, 255, 204, 0.8));
}

nav {
    flex: 1;
    display: flex;
    justify-content: center;
    margin-left: 20px;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

nav ul li {
    position: relative;
}

nav ul li a {
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    text-align: center;
    min-width: 100px;
    white-space: nowrap;
    background: rgba(0, 212, 170, 0.1);
    backdrop-filter: blur(20px);
}

nav ul li a:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #00d4aa, #00ffcc);
    transition: left 0.3s ease;
    z-index: -1;
}

nav ul li a:hover:before {
    left: 0;
}

nav ul li a:hover {
    color: #2d3748;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.4);
    border-color: #00ffcc;
    background: rgba(0, 212, 170, 0.2);
}

/* Active page styling */
nav ul li a.active {
    background: linear-gradient(45deg, #00d4aa, #00ffcc);
    color: #2d3748;
    border-color: #00ffcc;
}

/* Hero Section */
header.hero {
    background: linear-gradient(rgba(45, 55, 72, 0.4), rgba(102, 126, 234, 0.6)), url('https://nitorko.site/Images/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 300px 20px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 40% 60%, rgba(0, 212, 170, 0.3) 0%, transparent 70%);
    animation: energy-wave 5s ease-in-out infinite;
}

@keyframes energy-wave {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 95%;
    margin: 0 auto;
    animation: cyber-entrance 1.2s ease-out;
}

@keyframes cyber-entrance {
    from {
        opacity: 0;
        transform: translateY(100px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-content h1 {
    margin: 0;
    color: #fff;
    text-shadow: 4px 4px 20px rgba(0, 212, 170, 0.8);
    font-size: 5.5rem;
    line-height: 1.2;
    animation: electric-slide 1.2s ease-out 0.5s both;
}

@keyframes electric-slide {
    from {
        opacity: 0;
        transform: translateX(-150px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Content Sections */
section {
    padding: 100px 20px;
    background: rgba(255, 255, 255, 0.95);
    margin: 50px 0;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(0, 212, 170, 0.2);
}

section:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 170, 0.1), transparent);
    transition: left 1.2s ease;
}

section:hover:before {
    left: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(45, 55, 72, 0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95));
    backdrop-filter: blur(30px);
    transition: all 0.4s ease;
    border: 2px solid rgba(0, 212, 170, 0.1);
}

.container:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(45, 55, 72, 0.2);
    border-color: rgba(0, 212, 170, 0.3);
}

/* How to Play Section */
.how-to-play {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 120px 20px;
    text-align: center;
    color: white;
    position: relative;
}

.how-to-play:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,212,170,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.how-to-play h2 {
    font-size: 4.2rem;
    color: #fff;
    margin-bottom: 40px;
    text-shadow: 3px 3px 20px rgba(0, 212, 170, 0.6);
    animation: cyber-zoom 1s ease-out;
    position: relative;
    z-index: 2;
}

@keyframes cyber-zoom {
    from {
        opacity: 0;
        transform: scale(0.2);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.how-to-play p {
    max-width: 950px;
    margin: 0 auto 60px;
    font-size: 1.3rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 50px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.step {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95));
    border-radius: 25px;
    padding: 45px;
    text-align: center;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    animation: electric-float 1s ease-out;
    border: 3px solid rgba(0, 212, 170, 0.3);
}

.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.4s; }

@keyframes electric-float {
    from {
        opacity: 0;
        transform: translateY(120px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(45deg, #00d4aa, #00ffcc, #4facfe);
    animation: energy-flow 2s infinite;
}

@keyframes energy-flow {
    0% { transform: translateX(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
}

.step:hover {
    transform: translateY(-25px) scale(1.05);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.3);
    border-color: #00ffcc;
}

.step-number {
    background: linear-gradient(45deg, #00d4aa, #00ffcc);
    color: #2d3748;
    font-size: 2.2rem;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-weight: 900;
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.5);
    animation: electric-spin 3s linear infinite;
    border: 3px solid #fff;
}

@keyframes electric-spin {
    from { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.15); }
    to { transform: rotate(360deg) scale(1); }
}

.step h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2d3748;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
}

.step p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
}

.step img {
    width: 100%;
    border-radius: 20px;
    margin-top: 30px;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.step img:hover {
    transform: scale(1.1) rotate(-1deg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

/* Contact Form Styles */
.contact-us {
    text-align: center;
    padding: 120px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    position: relative;
}

.contact-us:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 25% 75%, rgba(0, 212, 170, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 75% 25%, rgba(0, 255, 204, 0.2) 0%, transparent 50%);
}

.contact-us h1 {
    color: #fff;
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 4px 4px 20px rgba(0, 212, 170, 0.6);
    position: relative;
    z-index: 2;
}

.contact-us h2 {
    color: #fff;
    font-size: 3.2rem;
    margin-bottom: 35px;
    text-shadow: 3px 3px 15px rgba(0, 212, 170, 0.5);
    position: relative;
    z-index: 2;
}

.contact-us > .container > p {
    max-width: 850px;
    margin: 0 auto 70px;
    font-size: 1.4rem;
    color: #fff;
    line-height: 1.9;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    background: rgba(45, 55, 72, 0.7);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(0, 212, 170, 0.3);
    backdrop-filter: blur(20px);
}

.contact-form {
    max-width: 750px;
    margin: 0 auto 100px;
    text-align: left;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95));
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(40px);
    animation: cyber-slide-up 1s ease-out;
    position: relative;
    z-index: 2;
    border: 3px solid rgba(0, 212, 170, 0.3);
}

@keyframes cyber-slide-up {
    from {
        opacity: 0;
        transform: translateY(120px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-form label {
    display: block;
    margin-bottom: 12px;
    font-size: 1.3rem;
    color: #2d3748;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 22px;
    margin-bottom: 30px;
    border: 3px solid #e2e8f0;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    font-size: 1.2rem;
    color: #2d3748;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00d4aa;
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 170, 0.3);
}

.contact-form textarea {
    height: 200px;
    resize: vertical;
}

.agreement-text {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.7;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), rgba(0, 255, 204, 0.1));
    border-radius: 15px;
    border-left: 5px solid #00d4aa;
}

.agreement-text a {
    color: #00d4aa;
    font-weight: bold;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 18px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border-radius: 20px;
    border: 2px solid rgba(0, 212, 170, 0.2);
}

.form-checkbox input[type="checkbox"] {
    margin-top: 8px;
    transform: scale(1.8);
    accent-color: #00d4aa;
}

.form-checkbox label {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.6;
    font-weight: normal;
}

.submit-btn {
    background: linear-gradient(45deg, #00d4aa, #00ffcc, #4facfe);
    color: #2d3748;
    padding: 22px;
    width: 100%;
    border: none;
    border-radius: 15px;
    font-size: 1.5rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Inter', sans-serif;
}

.submit-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #4facfe, #00ffcc, #00d4aa);
    transition: left 0.3s ease;
}

.submit-btn:hover:before {
    left: 0;
}

.submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 212, 170, 0.5);
}

/* Contact Info Section */
.contact-info-section {
    margin: 100px 0;
    padding: 70px 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    backdrop-filter: blur(40px);
    border: 2px solid rgba(0, 212, 170, 0.3);
    position: relative;
    z-index: 2;
}

.contact-info-section h2 {
    color: #fff;
    font-size: 3.5rem;
    margin-bottom: 60px;
    text-shadow: 4px 4px 20px rgba(0, 212, 170, 0.6);
    background: rgba(45, 55, 72, 0.8);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid rgba(0, 212, 170, 0.4);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-method {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95));
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(0, 212, 170, 0.2);
}

.contact-method:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(45deg, #00d4aa, #00ffcc);
}

.contact-method:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.25);
    border-color: #00ffcc;
}

.contact-method i {
    font-size: 4.5rem;
    color: #00d4aa;
    margin-bottom: 30px;
    animation: electric-bounce 3s infinite;
}

@keyframes electric-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

.contact-method h3 {
    color: #2d3748;
    font-size: 2rem;
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
}

.contact-method p {
    font-size: 1.4rem;
    margin-bottom: 18px;
    color: #2d3748;
}

.contact-method p a {
    color: #00d4aa;
    font-weight: bold;
    text-decoration: none;
}

.contact-method span {
    color: #4a5568;
    font-size: 1.1rem;
    font-style: italic;
}

/* FAQ Section */
.faq-section {
    margin: 100px 0;
    padding: 70px 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95));
    border-radius: 30px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    border: 3px solid rgba(0, 212, 170, 0.2);
}

.faq-section h2 {
    color: #2d3748;
    font-size: 3.5rem;
    margin-bottom: 60px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    padding: 35px;
    border: 3px solid transparent;
    border-radius: 25px;
    text-align: left;
    transition: all 0.5s ease;
    background: linear-gradient(white, white) padding-box, 
                linear-gradient(45deg, #00d4aa, #00ffcc) border-box;
    position: relative;
    overflow: hidden;
}

.faq-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 170, 0.1), transparent);
    transition: left 0.6s ease;
}

.faq-item:hover:before {
    left: 100%;
}

.faq-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 212, 170, 0.3);
}

.faq-item h3 {
    color: #00d4aa;
    font-size: 1.6rem;
    margin-bottom: 18px;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
}

.faq-item p {
    color: #4a5568;
    font-size: 1.2rem;
    line-height: 1.7;
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #2d3748, #4a5568, #1a202c);
    color: white;
    padding: 100px 20px 50px;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-grid" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,212,170,0.1)"/><circle cx="5" cy="15" r="0.5" fill="rgba(0,212,170,0.05)"/><circle cx="15" cy="5" r="0.8" fill="rgba(0,212,170,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-grid)"/></svg>');
    opacity: 0.4;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 1;
}

.footer-section {
    animation: cyber-fade-in 1s ease-out;
}

.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.4s; }

@keyframes cyber-fade-in {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-section h3 {
    color: #00d4aa;
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 0 15px rgba(0, 212, 170, 0.6);
}

.footer-section ul li {
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.footer-section ul li:hover {
    transform: translateX(15px);
    color: #00ffcc;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.footer-section ul li a:hover {
    color: #00d4aa;
    text-shadow: 0 0 10px rgba(0, 212, 170, 0.7);
}

.social-icons a {
    margin-right: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 2.2rem;
    transition: all 0.4s ease;
}

.social-icons a:hover {
    color: #00d4aa;
    transform: translateY(-8px) scale(1.4);
    text-shadow: 0 0 20px rgba(0, 212, 170, 0.8);
}

.map-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #00d4aa, #00ffcc);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d3748;
    font-size: 1.3rem;
    border-radius: 20px;
    font-weight: 800;
    box-shadow: 0 20px 50px rgba(0, 212, 170, 0.4);
    transition: all 0.4s ease;
    font-family: 'Inter', sans-serif;
}

.map-placeholder:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 60px rgba(0, 212, 170, 0.6);
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    border-top: 3px solid rgba(0, 212, 170, 0.4);
    padding-top: 50px;
    position: relative;
    z-index: 1;
}

.footer-bottom h3 {
    font-size: 3rem;
    background: linear-gradient(45deg, #00d4aa, #00ffcc, #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    text-shadow: 0 0 25px rgba(0, 212, 170, 0.7);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.disclaimer {
    font-size: 1rem;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.talk-btn {
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb);
    color: white;
    padding: 18px 35px;
    border-radius: 35px;
    display: inline-block;
    margin-top: 25px;
    font-weight: 800;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.talk-btn:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.6);
}

/* Scroll to top button */
.scroll-to {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #00d4aa, #00ffcc);
    color: #2d3748;
    border-radius: 30px;
    margin-top: 25px;
    font-weight: 800;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Inter', sans-serif;
}

.scroll-to:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 212, 170, 0.5);
}

/* Floating particles effect */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(0, 212, 170, 0.8);
    border-radius: 50%;
    animation: cyber-float 10s ease-in-out infinite;
}

.particle:nth-child(1) {
    width: 15px;
    height: 15px;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 10px;
    height: 10px;
    left: 30%;
    animation-delay: 3s;
}

.particle:nth-child(3) {
    width: 12px;
    height: 12px;
    left: 50%;
    animation-delay: 6s;
}

@keyframes cyber-float {
    0%, 100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        transform: translateY(90vh) scale(1);
        opacity: 1;
    }
    90% {
        transform: translateY(10vh) scale(1);
        opacity: 1;
    }
}

/* Glowing effect for important elements */
.glow {
    animation: cyber-glow-pulse 2.5s ease-in-out infinite alternate;
}

@keyframes cyber-glow-pulse {
    from {
        box-shadow: 0 0 30px rgba(0, 212, 170, 0.7);
    }
    to {
        box-shadow: 0 0 50px rgba(0, 255, 204, 0.9);
    }
}

/* Electric decoration */
.electric-decoration {
    position: relative;
}

.electric-decoration:before {
    content: "⚡";
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 2rem;
    animation: electric-spark 3s linear infinite;
    color: #00d4aa;
}

@keyframes electric-spark {
    0%, 100% { transform: rotate(0deg) scale(1); opacity: 1; }
    25% { transform: rotate(90deg) scale(1.2); opacity: 0.8; }
    50% { transform: rotate(180deg) scale(1); opacity: 1; }
    75% { transform: rotate(270deg) scale(1.2); opacity: 0.8; }
}

/* Responsive Design */
@media (max-width: 1400px) {
    .nav-container {
        max-width: 100%;
        padding: 0 10px;
    }
    
    nav ul li a {
        font-size: 0.85rem;
        padding: 10px 12px;
        min-width: 90px;
    }
}

@media (max-width: 1200px) {
    nav ul li a {
        font-size: 0.8rem;
        padding: 10px 10px;
        min-width: 80px;
        letter-spacing: 0.3px;
    }
}

@media (max-width: 1024px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
        padding: 10px;
    }
    
    .logo {
        max-width: 140px;
    }
    
    nav {
        margin-left: 0;
        width: 100%;
    }
    
    nav ul {
        justify-content: center;
        gap: 6px;
    }
    
    nav ul li a {
        font-size: 0.75rem;
        padding: 8px 10px;
        min-width: 75px;
    }
}

@media (max-width: 768px) {
    header.nav-header {
        padding: 8px 0;
    }
    
    .nav-container {
        gap: 12px;
        padding: 8px;
    }
    
    .logo {
        max-width: 120px;
    }
    
    nav ul {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        width: 100%;
        max-width: 600px;
    }
    
    nav ul li a {
        font-size: 0.7rem;
        padding: 10px 4px;
        min-width: auto;
        text-align: center;
    }
    
    .hero {
        padding: 200px 10px;
        min-height: 80vh;
    }

    .hero-content h1 {
        font-size: 3.8rem;
    }

    section {
        padding: 80px 10px;
        margin: 30px 0;
    }

    .container {
        padding: 30px;
    }

    h1 {
        font-size: 3.2rem;
    }

    h2 {
        font-size: 2.4rem;
    }

    .how-to-play h2 {
        font-size: 3.2rem;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 40px;
        margin: 0 auto 60px;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-us h1 {
        font-size: 3rem;
    }

    .contact-us h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    nav ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    
    nav ul li a {
        font-size: 0.65rem;
        padding: 8px 2px;
    }
}

/* Additional cyber animations */
@keyframes cyber-shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.cyber-shimmer {
    background: linear-gradient(90deg, transparent, rgba(0, 212, 170, 0.4), transparent);
    background-size: 200% 100%;
    animation: cyber-shimmer 2s infinite;
}