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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    text-rendering: optimizeSpeed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Modern Gaming Color Variables */
:root {
    --primary-neon: #00ff88;
    --secondary-neon: #ff0080;
    --accent-purple: #8b5cf6;
    --dark-bg: #0f0f23;
    --card-bg: rgba(255, 255, 255, 0.05);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #b8b8b8;
    --neon-glow: 0 0 20px rgba(0, 255, 136, 0.5);
    --purple-glow: 0 0 20px rgba(139, 92, 246, 0.5);
}

/* Particle Background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary-neon);
    border-radius: 50%;
    animation: particleFloat 20s linear infinite;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .particles {
        display: none;
    }
    
    .particle {
        animation: none;
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Modern Gaming Effects */
.glow-border {
    position: relative;
}

.glow-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-neon), var(--secondary-neon), var(--accent-purple), var(--primary-neon));
    border-radius: inherit;
    z-index: -1;
    animation: borderGlow 3s linear infinite;
    background-size: 400% 400%;
}

@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Hover Effects */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

/* Text Glow Effect */
.text-glow {
    text-shadow: 0 0 10px currentColor;
}

/* Loading Animation */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 255, 136, 0.3);
    border-top: 3px solid var(--primary-neon);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Pulse Animation */
.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

/* Floating Header */
.floating-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-neon);
    text-shadow: var(--neon-glow);
    animation: logoGlow 2s ease-in-out infinite alternate;
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid var(--primary-neon);
    box-shadow: var(--neon-glow);
    transition: all 0.3s ease;
}

.logo:hover img {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.8);
}

@keyframes logoGlow {
    0% { text-shadow: 0 0 10px rgba(0, 255, 136, 0.5); }
    100% { text-shadow: 0 0 20px rgba(0, 255, 136, 0.8), 0 0 30px rgba(0, 255, 136, 0.6); }
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 20px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-neon);
    background: rgba(0, 255, 136, 0.1);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3498db;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Button styling for Login and Register links */
.nav-menu a[href*="daman.ooo"] {
    background: linear-gradient(135deg, var(--primary-neon), #00cc6a);
    color: var(--dark-bg) !important;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 700;
    box-shadow: var(--neon-glow);
    border: 1px solid var(--primary-neon);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu a[href*="daman.ooo"]:hover {
    background: linear-gradient(135deg, #00cc6a, var(--primary-neon));
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.8);
    color: var(--dark-bg) !important;
    animation: buttonPulse 1s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% { transform: translateY(-3px) scale(1); }
    50% { transform: translateY(-3px) scale(1.05); }
}

.nav-menu a[href*="daman.ooo"]::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: var(--glass-bg);
    border: 1px solid rgba(0, 255, 136, 0.2);
    backdrop-filter: blur(10px);
    z-index: 1002;
    position: relative;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--primary-neon);
    color: var(--primary-neon);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.2);
}

.mobile-menu-toggle i {
    transition: transform 0.3s ease;
}

.mobile-menu-toggle.active i {
    transform: rotate(90deg);
    color: var(--primary-neon);
}

/* Hero Section with Carousel */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 80px;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    padding-top: 40px;
    will-change: transform;
    contain: layout style paint;
}

    .carousel {
        position: relative;
        height: auto;
        min-height: 100vh;
    }

    .carousel-slide {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: auto;
        opacity: 0;
        transition: opacity 0.8s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
        visibility: hidden;
    }

    .carousel-slide.active {
        opacity: 1 !important;
        z-index: 2;
        display: flex !important;
        visibility: visible !important;
        position: relative !important;
    }

.slide-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
    padding: 0 40px;
    align-items: center;
    min-height: 80vh;
    will-change: transform;
    contain: layout style;
}

.slide-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.logo-display {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    visibility: visible !important;
    opacity: 1 !important;
}

.hero-logo {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    object-fit: cover;
    border: 3px solid var(--primary-neon);
    box-shadow: var(--neon-glow);
    animation: logoFloat 3s ease-in-out infinite;
    z-index: 2;
    position: relative;
    will-change: transform;
    contain: layout style paint;
}

@media (max-width: 768px) {
    .hero-logo {
        animation: none;
        transform: none;
    }
}

.logo-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 2s ease-in-out infinite;
}

@media (max-width: 768px) {
    .logo-glow {
        animation: none;
    }
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.platform-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--glass-bg);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-neon);
    box-shadow: var(--neon-glow);
}

@media (max-width: 768px) {
    .stat-item:hover {
        transform: none;
    }
    
    .feature-tag:hover {
        transform: none;
    }
    
    .cta-button:hover {
        transform: none;
    }
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-neon);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 5px;
}

.slide-content {
    position: relative;
    z-index: 10;
    color: var(--text-primary);
}

.content-wrapper {
    max-width: 500px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 5px;
    will-change: transform;
    contain: layout style;
}

.title-line {
    display: block;
    animation: slideInLeft 0.8s ease-out;
    position: relative;
    z-index: 10;
    will-change: transform, opacity;
    contain: layout style;
}

@media (max-width: 768px) {
    .title-line {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

.title-line.highlight {
    color: var(--primary-neon);
    text-shadow: var(--neon-glow);
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-secondary);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@media (max-width: 768px) {
    .hero-description {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-features {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--glass-bg);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .feature-tag {
        transition: none;
    }
    
    .cta-button {
        transition: none;
    }
    
    .stat-item {
        transition: none;
    }
}

.feature-tag:hover {
    border-color: var(--primary-neon);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
    transform: translateY(-2px);
}

.feature-tag i {
    color: var(--primary-neon);
    font-size: 1rem;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary-neon), #00cc6a);
    color: var(--dark-bg);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-neon);
    border-color: var(--primary-neon);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #00cc6a, var(--primary-neon));
}

.cta-button.secondary:hover {
    background: var(--primary-neon);
    color: var(--dark-bg);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-neon);
    font-size: 1.2rem;
    animation: float 6s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

@media (max-width: 768px) {
    .floating-elements {
        display: none;
    }
    
    .floating-icon {
        animation: none;
    }
}

.floating-icon:nth-child(1) { top: 20%; left: 10%; }
.floating-icon:nth-child(2) { top: 60%; left: 85%; }
.floating-icon:nth-child(3) { top: 80%; left: 15%; }
.floating-icon:nth-child(4) { top: 30%; left: 80%; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Responsive Design for Hero Section */
@media (max-width: 1024px) {
    .slide-container {
        gap: 40px;
        padding: 0 30px;
    }
    
    .hero-logo {
        width: 180px;
        height: 180px;
    }
    
    .logo-glow {
        width: 220px;
        height: 220px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .platform-stats {
        gap: 20px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 60px 0 40px;
        margin-top: 80px;
        overflow: visible !important;
    }
    
    .slide-container {
        display: flex !important;
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
        text-align: center;
        min-height: 70vh;
        align-items: center;
        justify-content: center;
    }
    
    .slide-logo-section {
        order: 1;
        gap: 30px;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
        width: 100%;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 10 !important;
        min-height: 200px !important;
        background: rgba(0, 255, 136, 0.05) !important;
        padding: 20px !important;
    }
    
    .slide-content {
        order: 2;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .content-wrapper {
        max-width: 100%;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .hero-logo {
        width: 150px;
        height: 150px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin: 10px auto !important;
        border: 2px solid var(--primary-neon) !important;
        border-radius: 20px !important;
    }
    
    .logo-glow {
        width: 180px;
        height: 180px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
        display: flex;
        flex-direction: column;
        gap: 3px;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .platform-stats {
        gap: 15px;
        justify-content: center;
        display: flex !important;
        flex-wrap: wrap;
        margin-top: 20px;
        width: 100%;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .stat-item {
        padding: 12px 15px;
        min-width: 120px;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        visibility: visible !important;
        opacity: 1 !important;
        background: rgba(0, 255, 136, 0.1) !important;
        border: 1px solid var(--primary-neon) !important;
        border-radius: 10px !important;
        margin: 5px !important;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-features {
        justify-content: center;
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .feature-tag {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .hero-buttons {
        display: flex !important;
        justify-content: center;
        gap: 15px;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100%;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .floating-elements {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 50px 0 30px;
        margin-top: 70px;
        overflow: visible !important;
    }
    
    .slide-container {
        padding: 0 15px;
        min-height: 80vh;
        gap: 20px;
        display: flex !important;
        flex-direction: column;
        text-align: center;
        width: 100%;
        max-width: 100%;
        align-items: center;
        justify-content: center;
    }
    
    .hero-logo {
        width: 120px;
        height: 120px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin: 8px auto !important;
        border: 2px solid var(--primary-neon) !important;
        border-radius: 15px !important;
    }
    
    .logo-glow {
        width: 140px;
        height: 140px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 12px;
        display: flex;
        flex-direction: column;
        gap: 2px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .slide-content {
        order: 2;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .content-wrapper {
        max-width: 100%;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .slide-logo-section {
        order: 1;
        gap: 20px;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        margin-bottom: 15px;
        width: 100%;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 10 !important;
        min-height: 150px !important;
        background: rgba(0, 255, 136, 0.05) !important;
        padding: 15px !important;
    }
    
    .platform-stats {
        gap: 10px;
        display: flex !important;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 15px;
        width: 100%;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .stat-item {
        padding: 10px 12px;
        min-width: 100px;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        visibility: visible !important;
        opacity: 1 !important;
        background: rgba(0, 255, 136, 0.1) !important;
        border: 1px solid var(--primary-neon) !important;
        border-radius: 8px !important;
        margin: 3px !important;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-features {
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .feature-tag {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
    
    .hero-buttons {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100%;
        margin-top: 20px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.95rem;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin: 5px 0;
    }
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 3;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: white;
    transform: scale(1.2);
}

/* Featured Games Section */
.featured-games {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.featured-games::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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,255,136,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.featured-games h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
    color: var(--text-primary);
    text-shadow: var(--neon-glow);
    position: relative;
    z-index: 2;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

/* Game Tiles - Small Icon-Based Design */
.game-tile {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 255, 136, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 100px;
}

.game-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, transparent 100%);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-tile:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.2);
    border-color: var(--primary-neon);
}

.game-tile:hover::before {
    opacity: 1;
}

.tile-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid var(--primary-neon);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.tile-icon i {
    font-size: 1.8rem;
    color: var(--primary-neon);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.game-tile:hover .tile-icon {
    background: rgba(0, 255, 136, 0.2);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.game-tile:hover .tile-icon i {
    animation: iconSpin 0.6s ease-in-out;
}

.tile-content {
    flex: 1;
    min-width: 0;
}

.tile-content h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-primary);
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tile-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tile-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tile-meta .rating {
    color: #ffd700;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.tile-meta .rating i {
    color: #ffd700;
    font-size: 0.8rem;
}

.play-btn {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary-neon), #00cc6a);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.play-btn i {
    color: var(--dark-bg);
    font-size: 0.9rem;
    font-weight: bold;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
    background: linear-gradient(135deg, #00cc6a, var(--primary-neon));
}

.game-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 255, 136, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.3);
    border-color: var(--primary-neon);
}

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

.game-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 136, 0.2);
    border: 2px solid var(--primary-neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    z-index: 3;
    transition: all 0.3s ease;
}

.game-icon i {
    font-size: 1.5rem;
    color: var(--primary-neon);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.game-card:hover .game-icon {
    background: rgba(0, 255, 136, 0.3);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.game-card:hover .game-icon i {
    animation: iconSpin 0.6s ease-in-out;
}

@keyframes iconSpin {
    0% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
    100% { transform: rotate(360deg); }
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.download-btn {
    background: linear-gradient(135deg, var(--primary-neon), #00cc6a);
    color: var(--dark-bg);
    border: 2px solid var(--primary-neon);
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--neon-glow);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 10px;
}

.download-btn::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 ease;
}

.download-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.8);
    background: linear-gradient(135deg, #00cc6a, var(--primary-neon));
}

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

.game-info {
    padding: 25px;
    position: relative;
    z-index: 2;
}

.game-info h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-weight: 700;
}

.game-info p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.game-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.size {
    color: var(--primary-neon);
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.rating {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e 0%, #0f0f23 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,255,136,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.features h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
    color: var(--text-primary);
    text-shadow: var(--neon-glow);
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.4s ease;
    background: var(--card-bg);
    border: 1px solid rgba(0, 255, 136, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, transparent 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2);
    border-color: var(--primary-neon);
}

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

.feature-card i {
    font-size: 3.5rem;
    color: var(--primary-neon);
    margin-bottom: 25px;
    text-shadow: var(--neon-glow);
    transition: all 0.3s ease;
}

.feature-card:hover i {
    transform: scale(1.1);
    animation: iconPulse 1s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1.1); }
    50% { transform: scale(1.2); }
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-weight: 700;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    color: var(--text-primary);
    padding: 60px 0 20px;
    position: relative;
    z-index: 1;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(0,255,136,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-grid)"/></svg>');
    opacity: 0.3;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.footer-section h3,
.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 20px;
    text-shadow: var(--neon-glow);
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

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

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding: 2px 0;
}

.footer-section ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-neon);
    transition: width 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-neon);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    transform: translateX(5px);
}

.footer-section ul li a:hover::before {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--card-bg);
    color: var(--text-secondary);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 136, 0.2);
    backdrop-filter: blur(10px);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-neon);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.4);
    border-color: var(--primary-neon);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 25px;
    background: var(--card-bg);
    color: var(--text-primary);
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.newsletter-form input:focus {
    border-color: var(--primary-neon);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.newsletter-form input::placeholder {
    color: var(--text-secondary);
}

.newsletter-form button {
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-neon), #00cc6a);
    color: var(--dark-bg);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.5);
    background: linear-gradient(135deg, #00cc6a, var(--primary-neon));
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(0, 255, 136, 0.2);
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
}

/* Page Content Styles */
.page-content {
    margin-top: 70px;
    padding: 40px 0;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.page-header p {
    color: #666;
    font-size: 1.1rem;
}

.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

.content-section h3 {
    color: #34495e;
    font-size: 1.3rem;
    margin: 25px 0 15px 0;
}

.content-section p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

.content-section ul, .content-section ol {
    margin: 15px 0;
    padding-left: 20px;
}

.content-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* FAQ Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-section {
    margin-bottom: 50px;
}

.faq-section h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.1rem;
}

.faq-question i {
    color: #3498db;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-answer p {
    margin-bottom: 15px;
}

.faq-answer ul, .faq-answer ol {
    margin: 15px 0;
    padding-left: 20px;
}

.contact-section {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 15px;
}

/* Contact Page Styles */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.contact-info h2 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.contact-methods {
    margin: 30px 0;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-method i {
    font-size: 1.5rem;
    color: #3498db;
    margin-top: 5px;
}

.contact-method h3 {
    margin: 0 0 5px 0;
    color: #2c3e50;
    font-size: 1.1rem;
}

.contact-method p {
    margin: 0;
    color: #666;
}

.response-time {
    background: #e8f4fd;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.response-time h3 {
    margin: 0 0 10px 0;
    color: #2c3e50;
}

/* Contact Form Styles */
.contact-form-container {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
    color: #2c3e50;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 2px;
}

.checkbox-label a {
    color: #3498db;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.submit-btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

/* Additional Info Styles */
.additional-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.info-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.info-section h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.info-section ul {
    list-style: none;
    padding: 0;
}

.info-section li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.info-section li:before {
    content: '•';
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.info-section a {
    color: #3498db;
    text-decoration: none;
}

.info-section a:hover {
    text-decoration: underline;
}

/* How to Play Section */
.how-to-play {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e 0%, #0f0f23 100%);
    position: relative;
}

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

.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-shadow: var(--neon-glow);
}

.section-header h2 i {
    color: var(--primary-neon);
    font-size: 2.5rem;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
    animation: iconPulse 2s ease-in-out infinite;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.6;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.step-card {
    background: var(--card-bg);
    padding: 35px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(0, 255, 136, 0.1);
    backdrop-filter: blur(10px);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, transparent 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2);
    border-color: var(--primary-neon);
}

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

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-neon), #00cc6a);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 25px;
    box-shadow: var(--neon-glow);
    border: 2px solid var(--primary-neon);
    transition: all 0.3s ease;
}

.step-card:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.8);
}

.step-card h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Login & Register Process Section */
.login-register-process {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    position: relative;
}

.login-register-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="process-grid" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M 25 0 L 0 0 0 25" fill="none" stroke="rgba(0,255,136,0.06)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23process-grid)"/></svg>');
    opacity: 0.3;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.process-card {
    background: var(--card-bg);
    border: 2px solid rgba(0, 255, 136, 0.2);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, transparent 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2);
    border-color: var(--primary-neon);
}

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

.process-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0, 255, 136, 0.2);
    position: relative;
    z-index: 2;
}

.process-header h3 {
    color: var(--text-primary);
    font-size: 2rem;
    display: flex;
    align-items: center;
    gap: 15px;
    text-shadow: var(--neon-glow);
}

.process-header h3 i {
    color: var(--primary-neon);
    font-size: 1.8rem;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
    animation: iconPulse 2s ease-in-out infinite;
}

.process-steps {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--glass-bg);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.process-step:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--primary-neon);
    transform: translateX(5px);
}

.step-marker {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary-neon), #00cc6a);
    color: var(--dark-bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: var(--neon-glow);
    border: 1px solid var(--primary-neon);
}

.step-content h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

.process-btn {
    width: 100%;
    padding: 18px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.process-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

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

.register-btn {
    background: transparent;
    color: var(--primary-neon);
    border: 2px solid var(--primary-neon);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.register-btn:hover {
    background: var(--primary-neon);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.8);
}

.login-btn {
    background: transparent;
    color: var(--primary-neon);
    border: 2px solid var(--primary-neon);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.login-btn:hover {
    background: var(--primary-neon);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.8);
}

/* Login & Register Page Styles */
.login-container,
.register-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.login-card,
.register-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.login-header,
.register-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h1,
.register-header h1 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.login-header h1 i,
.register-header h1 i {
    color: #3498db;
}

.login-header p,
.register-header p {
    color: #666;
    font-size: 1.1rem;
}

.login-form,
.register-form {
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group i {
    position: absolute;
    left: 15px;
    color: #666;
    z-index: 2;
}

.input-group input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: #3498db;
}

.password-toggle {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    z-index: 2;
}

.password-toggle:hover {
    color: #3498db;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    flex-wrap: wrap;
    gap: 10px;
}

.forgot-password {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-btn,
.register-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.login-btn:hover,
.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.login-divider,
.register-divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.login-divider::before,
.register-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e9ecef;
}

.login-divider span,
.register-divider span {
    background: white;
    padding: 0 20px;
    color: #666;
    font-size: 0.9rem;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.social-btn {
    padding: 12px 20px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: white;
    color: #333;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.social-btn:hover {
    border-color: #3498db;
    transform: translateY(-2px);
}

.google-btn:hover {
    border-color: #db4437;
    color: #db4437;
}

.facebook-btn:hover {
    border-color: #4267B2;
    color: #4267B2;
}

.login-footer,
.register-footer {
    text-align: center;
    color: #666;
}

.login-footer a,
.register-footer a {
    color: #3498db;
    text-decoration: none;
}

.login-footer a:hover,
.register-footer a:hover {
    text-decoration: underline;
}

.login-info,
.register-info {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.login-info h2,
.register-info h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
}

.benefit-item i {
    font-size: 1.5rem;
    color: #3498db;
    margin-top: 5px;
}

.benefit-item h3 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(15, 15, 35, 0.98);
        backdrop-filter: blur(15px);
        border-bottom: 1px solid rgba(0, 255, 136, 0.2);
        z-index: 1001;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        min-height: 200px;
    }
    
    .nav-menu.active {
        display: block !important;
        padding: 40px 20px;
        border-radius: 0 0 20px 20px;
        animation: slideDown 0.3s ease-out;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        min-height: 300px;
    }
    
    .nav-menu.active ul {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        padding: 0;
        margin: 0;
    }
    
    .nav-menu.active li {
        opacity: 0;
        animation: fadeInUp 0.3s ease-out forwards;
        width: 100%;
        text-align: center;
    }
    
    .nav-menu.active li a {
        display: block;
        padding: 20px 25px;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        margin: 8px 0;
        transition: all 0.3s ease;
        font-weight: 600;
        letter-spacing: 0.5px;
    }
    
    .nav-menu.active li a:hover {
        background: rgba(0, 255, 136, 0.1);
        transform: translateX(5px);
        color: var(--primary-neon);
    }
    
    .nav-menu.active li a:active {
        background: rgba(0, 255, 136, 0.2);
        transform: scale(0.98);
    }
    
    .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu.active li:nth-child(5) { animation-delay: 0.5s; }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        position: relative;
        z-index: 1002;
        cursor: pointer;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }
    
    .header-container {
        padding: 10px 20px;
    }
    
    .logo span {
        font-size: 1.1rem;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .carousel-controls {
        bottom: 30px;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .game-tile {
        padding: 15px;
        min-height: 90px;
    }
    
    .tile-icon {
        width: 50px;
        height: 50px;
    }
    
    .tile-icon i {
        font-size: 1.5rem;
    }
    
    .tile-content h3 {
        font-size: 1rem;
    }
    
    .tile-content p {
        font-size: 0.85rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .additional-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-header h2 {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .process-card {
        padding: 20px;
    }
    
    .step-card {
        padding: 25px 20px;
    }
    
    .login-container,
    .register-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .login-card,
    .register-card,
    .login-info,
    .register-info {
        padding: 30px 20px;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .featured-games h2,
    .features h2 {
        font-size: 2rem;
    }
    
    .header-container {
        padding: 8px 15px;
    }
    
    .logo {
        font-size: 1rem;
        gap: 6px;
    }
    
    .logo img {
        width: 28px;
        height: 28px;
    }
    
    .mobile-menu-toggle {
        font-size: 1.3rem;
        padding: 6px;
        min-width: 40px;
        min-height: 40px;
    }
    
    .nav-menu.active {
        padding: 30px 15px;
        min-height: 280px;
    }
    
    .nav-menu.active li a {
        padding: 15px 20px;
        font-size: 1rem;
        min-height: 45px;
    }
} 

/* About Us Page Specific Styles */

/* About Hero Section */
.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #16213e 0%, #0f0f23 100%);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="about-hero-grid" width="30" height="30" patternUnits="userSpaceOnUse"><path d="M 30 0 L 0 0 0 30" fill="none" stroke="rgba(0,255,136,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23about-hero-grid)"/></svg>');
    opacity: 0.3;
}

.about-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-hero .hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-hero .hero-title .title-line {
    display: block;
    color: var(--text-primary);
    text-shadow: var(--neon-glow);
}

.about-hero .hero-title .highlight {
    color: var(--primary-neon);
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.8);
}

.about-hero .hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.about-hero .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-hero .stat-item {
    text-align: center;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.about-hero .stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-neon);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.about-hero .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-neon);
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
    margin-bottom: 5px;
}

.about-hero .stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-hero .hero-visual {
    position: relative;
    height: 400px;
}

.floating-gaming-icons {
    position: relative;
    width: 100%;
    height: 100%;
}

.gaming-icon {
    position: absolute;
    font-size: 3rem;
    color: var(--primary-neon);
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
    animation-delay: var(--delay);
}

.gaming-icon:nth-child(1) { top: 20%; left: 20%; }
.gaming-icon:nth-child(2) { top: 60%; left: 70%; }
.gaming-icon:nth-child(3) { top: 80%; left: 30%; }
.gaming-icon:nth-child(4) { top: 30%; left: 80%; }

/* Story Section */
.story-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    position: relative;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.story-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-neon), transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 30px;
}

.timeline-marker {
    position: absolute;
    left: -22px;
    top: 0;
    width: 30px;
    height: 30px;
    background: var(--primary-neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--dark-bg);
    font-size: 0.9rem;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.timeline-content h4 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 10px;
    text-shadow: var(--neon-glow);
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
}

.mission-content {
    margin-top: 40px;
}

.mission-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    backdrop-filter: blur(10px);
    margin-bottom: 40px;
    text-align: center;
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-neon), #00cc6a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--dark-bg);
    box-shadow: var(--neon-glow);
}

.mission-card h3 {
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 20px;
    text-shadow: var(--neon-glow);
}

.mission-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.mission-points {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.mission-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 1rem;
}

.mission-points li i {
    color: var(--primary-neon);
    font-size: 1.1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-neon);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-purple), #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.value-card h4 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Offerings Section */
.offerings-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e 0%, #0f0f23 100%);
    position: relative;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.offering-card {
    background: var(--card-bg);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.offering-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.offering-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-neon);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.2);
}

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

.offering-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-neon), #00cc6a);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--dark-bg);
    box-shadow: var(--neon-glow);
}

.offering-card h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.offering-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.offering-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.feature-tag {
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary-neon);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background: var(--card-bg);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-neon);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.2);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-purple), #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.6);
}

.team-card h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.team-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.skill-tag {
    background: rgba(139, 92, 246, 0.1);
    color: var(--accent-purple);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

/* Commitment Section */
.commitment-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.commitment-item {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s ease;
}

.commitment-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-neon);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.commitment-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-neon), #00cc6a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--dark-bg);
    box-shadow: var(--neon-glow);
}

.commitment-item h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.commitment-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e 0%, #0f0f23 100%);
    position: relative;
    text-align: center;
}

.cta-content h2 {
    color: var(--text-primary);
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: var(--neon-glow);
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for About Us */
@media (max-width: 768px) {
    .about-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .timeline {
        padding-left: 20px;
    }
    
    .timeline::before {
        left: 10px;
    }
    
    .timeline-item {
        padding-left: 20px;
    }
    
    .timeline-marker {
        left: -17px;
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .mission-points {
        grid-template-columns: 1fr;
    }
    
    .values-grid,
    .offerings-grid,
    .team-grid,
    .commitment-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 100px 0 60px;
    }
    
    .about-hero .hero-title {
        font-size: 2rem;
    }
    
    .about-hero .hero-description {
        font-size: 1rem;
    }
    
    .about-hero .stat-number {
        font-size: 2rem;
    }
    
    .mission-card {
        padding: 30px 20px;
    }
    
    .offering-card,
    .team-card,
    .commitment-item {
        padding: 25px 20px;
    }
} 

/* Privacy Features Section */
.privacy-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.privacy-feature {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.privacy-feature:hover {
    transform: translateX(5px);
    border-color: var(--primary-neon);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.2);
}

.privacy-feature .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-neon), #00cc6a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--dark-bg);
    box-shadow: var(--neon-glow);
}

.privacy-feature h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-shadow: var(--neon-glow);
}

.privacy-feature p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Design for Privacy Features */
@media (max-width: 768px) {
    .privacy-features {
        gap: 20px;
    }
    
    .privacy-feature {
        padding: 20px;
    }
    
    .privacy-feature .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .privacy-feature h4 {
        font-size: 1.1rem;
    }
    
    .privacy-feature p {
        font-size: 0.9rem;
    }
} 

/* Section Intro Styles */
.section-intro {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-intro::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: introGlow 4s ease-in-out infinite;
}

@keyframes introGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.section-intro h2 {
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-shadow: var(--neon-glow);
    position: relative;
    display: inline-block;
}

.section-intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-neon), transparent);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
}

.section-intro h2 i {
    color: var(--primary-neon);
    margin-right: 15px;
    font-size: 2.8rem;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
    animation: iconPulse 2s ease-in-out infinite;
}

.section-intro p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 30px;
    position: relative;
}

.section-intro .intro-subtitle {
    font-size: 1rem;
    color: var(--accent-purple);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.section-intro .intro-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.section-intro .intro-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.section-intro .intro-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--card-bg);
    border-radius: 25px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.section-intro .intro-feature:hover {
    transform: translateY(-3px);
    border-color: var(--primary-neon);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.2);
}

.section-intro .intro-feature i {
    color: var(--primary-neon);
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
}

.section-intro .intro-feature span {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
}

.section-intro .intro-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-intro .intro-stat {
    text-align: center;
    padding: 25px 20px;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.section-intro .intro-stat:hover {
    transform: translateY(-5px);
    border-color: var(--primary-neon);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.section-intro .intro-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-neon);
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
    margin-bottom: 8px;
    display: block;
}

.section-intro .intro-stat .stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.section-intro .intro-cta {
    margin-top: 40px;
}

.section-intro .intro-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary-neon), #00cc6a);
    color: var(--dark-bg);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    border: 2px solid var(--primary-neon);
}

.section-intro .intro-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.5);
    background: linear-gradient(135deg, #00cc6a, var(--primary-neon));
}

.section-intro .intro-cta .cta-button i {
    font-size: 1.2rem;
}

/* Responsive Design for Section Intro */
@media (max-width: 768px) {
    .section-intro h2 {
        font-size: 2.5rem;
    }
    
    .section-intro h2 i {
        font-size: 2.3rem;
    }
    
    .section-intro p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .section-intro .intro-features {
        gap: 20px;
        padding: 0 20px;
    }
    
    .section-intro .intro-feature {
        padding: 10px 15px;
    }
    
    .section-intro .intro-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }
    
    .section-intro .intro-stat {
        padding: 20px 15px;
    }
    
    .section-intro .intro-stat .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .section-intro h2 {
        font-size: 2rem;
    }
    
    .section-intro h2 i {
        font-size: 1.8rem;
        margin-right: 10px;
    }
    
    .section-intro p {
        font-size: 1rem;
    }
    
    .section-intro .intro-features {
        flex-direction: column;
        align-items: center;
    }
    
    .section-intro .intro-stats {
        grid-template-columns: 1fr;
    }
    
    .section-intro .intro-cta .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
} 