/* Custom Tailwind Configuration */
@layer base {
    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }
    
    body {
        font-family: 'Inter', sans-serif;
        background-color: #0a0e17;
        color: #ffffff;
        line-height: 1.5;
        overflow-x: hidden;
    }
}

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

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.5);
}

.btn-primary-large {
    background: #ffcc00;
    color: #0a0e17;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.4);
    cursor: pointer;
}

.btn-primary-large:hover {
    background: #ffdb4d;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 204, 0, 0.6);
}

.btn-secondary {
    background: linear-gradient(135deg, #ffcc00, #e6b800);
    color: #0a0e17;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
    display: inline-block;
    cursor: pointer;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.5);
}

.btn-secondary-large {
    background: transparent;
    color: white;
    padding: 16px 32px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary-large:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.btn-gradient {
    background: linear-gradient(to right, #3b82f6, #06b6d4);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
    cursor: pointer;
}

.btn-gradient:hover {
    background: linear-gradient(to right, #2563eb, #0891b2);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
}

/* Game Card */
.game-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #151b2b;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
    display: block;
}

.game-card:hover {
    transform: translateY(-10px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in-up-delay {
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

.fade-in-delay-1 {
    animation: fadeIn 0.5s ease-out 0.1s both;
}

.fade-in-delay-2 {
    animation: fadeIn 0.5s ease-out 0.2s both;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0a0e17;
}

::-webkit-scrollbar-thumb {
    background: #151b2b;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #007bff;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Mobile Menu */
#mobile-menu {
    transition: all 0.3s ease;
}

#mobile-menu.hidden {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .btn-primary-large,
    .btn-secondary-large,
    .btn-gradient {
        width: 100%;
    }
}

