/* Home Page Specific Styles */

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(233, 30, 99, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(156, 39, 176, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    height: 400px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(233, 30, 99, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1) 0%, rgba(156, 39, 176, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-card:hover::before {
    opacity: 1;
}

.hero-card:hover {
    transform: translateY(-5px);
    border-color: rgba(233, 30, 99, 0.5);
    box-shadow: 0 15px 30px rgba(233, 30, 99, 0.3);
}

.hero-main {
    background: linear-gradient(rgba(15, 15, 35, 0.5), rgba(15, 15, 35, 0.5)), url('../images/1.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-secondary {
    background: linear-gradient(rgba(15, 15, 35, 0.5), rgba(15, 15, 35, 0.5)), url('../images/4.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bonus {
    background: linear-gradient(rgba(15, 15, 35, 0.5), rgba(15, 15, 35, 0.5)), url('../images/11.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.4;
}

.hero-card h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Welcome Section */
.welcome {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
}

.welcome-content p {
    font-size: 1.1rem;
    color: #b0b0b0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(233, 30, 99, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(233, 30, 99, 0.5);
    box-shadow: 0 15px 30px rgba(233, 30, 99, 0.2);
}

.feature-card i {
    font-size: 3rem;
    color: #e91e63;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    color: #ffffff;
    margin-bottom: 15px;
}

.feature-card p {
    color: #b0b0b0;
}

/* Spotlight Games */
.spotlight-games {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.games-category {
    margin-bottom: 60px;
}

.games-category h3 {
    color: #ffd700;
    margin-bottom: 30px;
    font-size: 2rem;
}

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

.game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(233, 30, 99, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e91e63, #9c27b0, #3f51b5);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.game-card:hover::before {
    transform: translateX(0);
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: rgba(233, 30, 99, 0.5);
    box-shadow: 0 15px 30px rgba(233, 30, 99, 0.3);
}

.game-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
}

.game-card h4 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.game-card p {
    color: #b0b0b0;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.btn-play {
    background: linear-gradient(135deg, #4caf50, #8bc34a);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
}

/* Game Categories */
.game-categories {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e 0%, #0f0f23 100%);
}

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

.category-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(233, 30, 99, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(233, 30, 99, 0.5);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.3);
}

.category-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.category-info h3 {
    color: #ffffff;
    margin-bottom: 5px;
}

.game-count {
    color: #ffd700;
    font-weight: 600;
}

/* How to Start */
.how-to-start {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
}

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

.step-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(233, 30, 99, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: rgba(233, 30, 99, 0.5);
    box-shadow: 0 15px 30px rgba(233, 30, 99, 0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 20px;
}

.step-card h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.quote {
    margin-bottom: 20px;
}

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

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

.author {
    color: #e91e63;
    font-weight: 600;
}

/* Hot Promotions */
.hot-promotions {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
}

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

.promo-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(233, 30, 99, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.promo-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s;
    pointer-events: none;
}

.promo-card:hover::after {
    transform: rotate(45deg) translate(100%, 100%);
}

.promo-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(233, 30, 99, 0.5);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.3);
}

.promo-card i {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 20px;
    display: block;
}

.promo-card h3 {
    color: #ffffff;
    margin-bottom: 15px;
}

.promo-card p {
    color: #b0b0b0;
    margin-bottom: 25px;
}

/* Responsive Design for Home */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        height: auto;
        gap: 20px;
    }
    
    .hero-card {
        padding: 25px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .features-grid,
    .categories-grid,
    .steps-grid,
    .promotions-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .game-card {
        padding: 20px;
    }
    
    .category-card {
        padding: 20px;
        gap: 15px;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}