/* Standard Gradient Background */
body {
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a0a2e 0%, #4a148c 40%, #ff6f00 100%);
    background-attachment: fixed;
    font-family: 'Inter', sans-serif;
    color: #fff;
}

/* Navigation */
nav {
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ff6f00;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff6f00;
}

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

/* Header Section */
.header-section {
    text-align: center;
    margin-bottom: 50px;
    margin-top: 20px;
}

.header-section h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    background: linear-gradient(90deg, #fff, #ff6f00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Search Bar */
.search-wrapper {
    display: flex;
    justify-content: center;
}

.search-wrapper input {
    padding: 15px 25px;
    width: 100%;
    max-width: 500px;
    border-radius: 30px;
    border: 2px solid rgba(255,255,255,0.2);
    font-size: 1rem;
    background: rgba(255,255,255,0.1);
    color: #fff;
    backdrop-filter: blur(10px);
    outline: none;
    transition: all 0.3s ease;
}

.search-wrapper input::placeholder {
    color: rgba(255,255,255,0.6);
}

.search-wrapper input:focus {
    border-color: #ff6f00;
    background: rgba(255,255,255,0.15);
    box-shadow: 0 0 20px rgba(255, 111, 0, 0.3);
}

/* Grid Layout */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    padding-bottom: 50px;
}

/* Game Card Styling */
.game-card {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4a148c, #ff6f00);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: #ff6f00;
}

.game-card:hover::before {
    transform: scaleX(1);
}

/* Number decoration */
.card-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0,0,0,0.08);
    z-index: 0;
}

/* Card Icon */
.card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    z-index: 1;
    position: relative;
}

.game-card h3 {
    margin-top: 0;
    font-size: 1.4rem;
    color: #1a0a2e;
    z-index: 1;
    position: relative;
    margin-bottom: 10px;
}

.game-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    z-index: 1;
    position: relative;
    margin-bottom: 15px;
}

/* Click Hint */
.click-hint {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, #4a148c, #ff6f00);
    color: #fff;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1;
    position: relative;
}

.game-card:hover .click-hint {
    opacity: 1;
    transform: translateY(0);
}

/* Info Section */
.info-section {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 16px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.info-section h2 {
    color: #ff6f00;
    margin-top: 0;
    margin-bottom: 15px;
}

.info-section p {
    opacity: 0.9;
    line-height: 1.8;
}

/* Footer */
footer {
    background: rgba(0,0,0,0.4);
    padding: 40px 20px 20px;
    margin-top: 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 30px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ff6f00;
    margin-bottom: 10px;
}

.footer-content p {
    opacity: 0.8;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .header-section h1 {
        font-size: 2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .game-card {
        padding: 20px;
    }
}

@media (max-width: 480px)