/* Homepage Specific Styles */
body {
    padding-top: 100px;
}

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    text-align: center;
    background: radial-gradient(circle at center, rgba(108, 92, 231, 0.1) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.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="stars" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    animation: starMove 20s linear infinite;
}

@keyframes starMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #6c5ce7, #00d2ff, #ffd700);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titlePulse 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    position: relative;
    z-index: 1;
}

.hero-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #cccccc;
    position: relative;
    z-index: 1;
}

@keyframes titlePulse {
    0%, 100% { 
        filter: drop-shadow(0 0 10px rgba(108, 92, 231, 0.5));
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 25px rgba(108, 92, 231, 0.8));
        transform: scale(1.02);
    }
}

/* Promotions Section */
.promotions {
    padding: 80px 0;
    position: relative;
}

.promo-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.promo-card {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(0, 0, 0, 0.3));
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: all 0.4s ease;
    cursor: pointer;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #6c5ce7, #00d2ff, #ffd700, #ff6b6b);
    background-size: 400% 400%;
    z-index: -1;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: gradientMove 4s ease infinite;
}

.promo-card:hover::before {
    opacity: 0.1;
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(108, 92, 231, 0.3);
}

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

.promo-main {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(0, 0, 0, 0.3));
}

.promo-secondary {
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.2), rgba(0, 0, 0, 0.3));
}

.promo-tertiary {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(0, 0, 0, 0.3));
}

.promo-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

.promo-content h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffd700;
}

.promo-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #cccccc;
}

.promo-btn {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.promo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.promo-btn-small {
    background: linear-gradient(45deg, #6c5ce7, #a855f7);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.promo-btn-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(26, 26, 46, 0.5));
}

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

.feature-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(108, 92, 231, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(108, 92, 231, 0.3);
    transition: all 0.4s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    background: rgba(108, 92, 231, 0.2);
    box-shadow: 0 15px 30px rgba(108, 92, 231, 0.3);
}

.feature-item i {
    font-size: 3rem;
    color: #6c5ce7;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.feature-item:nth-child(2) i {
    animation-delay: 0.5s;
}

.feature-item:nth-child(3) i {
    animation-delay: 1s;
}

.feature-item:nth-child(4) i {
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.feature-item h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffd700;
}

.feature-item p {
    color: #cccccc;
    line-height: 1.6;
}

/* Game Categories */
.game-categories {
    padding: 80px 0;
}

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

.category-card {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(108, 92, 231, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: #6c5ce7;
    box-shadow: 0 15px 30px rgba(108, 92, 231, 0.4);
}

.category-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #6c5ce7, #a855f7);
    border-radius: 50%;
    margin-bottom: 20px;
}

.category-icon i {
    font-size: 24px;
    color: white;
}

.category-info h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffd700;
}

.category-count {
    color: #6c5ce7;
    font-weight: 600;
    font-size: 1rem;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(0, 0, 0, 0.2));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
}

.quote {
    margin-bottom: 20px;
}

.quote i {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 15px;
}

.quote p {
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ffffff;
}

.author {
    color: #6c5ce7;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Responsive Design for Homepage */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .promo-card {
        padding: 20px;
    }
    
    .promo-content h3 {
        font-size: 1.4rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item {
        padding: 30px 20px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .promo-card {
        padding: 15px;
    }
    
    .feature-item {
        padding: 25px 15px;
    }
    
    .feature-item i {
        font-size: 2.5rem;
    }
    
    .feature-item h3 {
        font-size: 1.3rem;
    }
}