/* TwinPower Gaming CSS */
body {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
    font-family: 'Exo 2', sans-serif !important;
    margin: 0;
    padding: 0;
}

.test-red {
    background-color: red !important;
    color: white !important;
    padding: 20px;
    text-align: center;
    font-size: 2rem;
}

/* Header */
.gaming-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 15px 0;
    border-bottom: 2px solid #ff6b35;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    font-size: 2.5rem;
    color: #ff6b35;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.8rem;
    color: #ffffff;
    letter-spacing: 3px;
}

.logo-subtitle {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    color: #ff6b35;
    display: block;
    margin-top: -5px;
}

/* Buttons */
.game-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.game-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    color: white;
}

/* Hero Section */
.hero-area {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #3a3a3a 100%);
    padding: 100px 0;
    text-align: center;
    margin-top: 80px;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.hero-description {
    font-size: 1.3rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Stats */
.stats-area {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    display: block;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.stat-label {
    color: #999999;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Content Sections */
.content-section {
    padding: 60px 0;
}

.section-dark {
    background: #2d2d2d;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    color: #cccccc;
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* Game Cards */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.game-card {
    background: #3a3a3a;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #444444;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.game-image {
    height: 200px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.game-content {
    padding: 20px;
}

.game-title {
    font-family: 'Orbitron', monospace;
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.game-desc {
    color: #cccccc;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.game-price {
    font-family: 'Orbitron', monospace;
    color: #ff6b35;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .stats-area {
        flex-direction: column;
        gap: 30px;
    }
} 