/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-logo .logo {
    height: 64px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ffffff;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-link {
    display: inline-block;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.social-link:hover {
    transform: translateY(-2px);
}

.social-link img {
    width: 25px;  
    height: 40px; 
    object-fit: contain;
    transition: opacity 0.2s ease;
}

.game-social-link {
    display: inline-block;
    cursor: pointer;
    transition: transform 0.2s ease;
    padding: 0.4rem;
}

.game-social-link:hover {
    transform: translateY(-2px);
}

.game-social-link img {
    width: 28px;  
    height: auto; 
    object-fit: contain;
    transition: opacity 0.2s ease;
}

.social-link img:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 2rem;
    position: relative;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.highlight {
    background: linear-gradient(135deg, #d95c58, #c82a1f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dot {
    color: #c82a1f;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4rem;
    font-weight: 400;
}

.hero-showcase {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16/9;
}

.showcase-background {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #1e293b, #334155);
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.showcase-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(196, 129, 41, 0);
    backdrop-filter: blur(0px);
    border-radius: 10px;
    padding: 0rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0);
    z-index: 10;
}

.footer-text {
            font-size: 0.8rem;
            text-align: center;
            margin-bottom: 1rem;
        }

.showcase-logo {
    border-radius: 15px;
    z-index: 9;
    height: 180px;
    width: auto;
}

/* Features Section */
.features {
    padding: 8rem 2rem;
    background: #0a0a0a;
    margin-top: 0rem;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.features-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(51, 65, 85, 0.6));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(246, 81, 59, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(246, 93, 59, 0.3);
    box-shadow: 0 8px 32px rgba(246, 59, 59, 0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f6443b, #923306);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Mobile Navigation Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.mobile-menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu .nav-link {
    display: block;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color 0.2s ease;
}

.mobile-menu .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.mobile-menu .nav-link:last-child {
    border-bottom: none;
}

/* Ensure mobile menu is hidden on desktop */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .mobile-menu {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
    }
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .hero-showcase {
        max-width: 700px;
    }
    
    .features-container {
        max-width: 1000px;
    }
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .hero-showcase {
        max-width: 600px;
    }
    
    .showcase-logo {
        height: 140px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
        position: relative;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
        order: 1;
    }
    
    .social-links {
        order: 2;
    }
    
    .social-links {
        gap: 0.75rem;
    }
    
    .social-link img {
        width: 20px;
        height: 32px;
    }
    
    .nav-logo .logo {
        height: 48px;
    }
    
    .hero {
        padding: 4rem 1rem 2rem;
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-showcase {
        max-width: 100%;
        aspect-ratio: 4/3;
    }
    
    .showcase-card {
        padding: 1rem;
    }
    
    .showcase-logo {
        height: 100px;
    }
    
    .features {
        padding: 4rem 1rem;
    }
    
    .features-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 0.75rem;
    }
    
    .features-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 1rem;
    }
    
    .feature-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 0.75rem;
    }
    
    .nav-logo .logo {
        height: 40px;
    }
    
    .social-link img {
        width: 18px;
        height: 28px;
    }
    
    .hero {
        padding: 3rem 0.75rem 1.5rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 12vw, 3rem);
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-showcase {
        aspect-ratio: 1/1;
        max-width: 280px;
    }
    
    .showcase-logo {
        height: 80px;
    }
    
    .features {
        padding: 3rem 0.75rem;
    }
    
    .features-title {
        font-size: clamp(1.75rem, 10vw, 2rem);
    }
    
    .features-subtitle {
        font-size: 0.9rem;
    }
    
    .features-grid {
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .feature-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }
    
    .feature-title {
        font-size: 1rem;
    }
    
    .feature-description {
        font-size: 0.85rem;
    }
}

/* Ultra Small Screens */
@media (max-width: 320px) {
    .nav-container {
        padding: 0 0.5rem;
    }
    
    .hero {
        padding: 2.5rem 0.5rem 1rem;
    }
    
    .hero-showcase {
        max-width: 250px;
    }
    
    .showcase-logo {
        height: 70px;
    }
    
    .features {
        padding: 2.5rem 0.5rem;
    }
    
    .feature-card {
        padding: 1rem;
    }
}

/* Animation for smooth loading */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out;
}

.feature-card {
    animation: fadeInUp 0.8s ease-out;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #00000000;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff26005c;
}
