/* Slots Page Styles */

/* Banner Section */
.slots-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/slots-bg.jpg') center/cover no-repeat;
    background-color: var(--accent-color);
}

/* Slots Intro */
.slots-intro {
    padding: 2rem 0;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 0;
}

.intro-content p {
    font-size: 1.2rem;
    color: var(--gray-color);
}

/* Providers Section */
.providers {
    padding: 4rem 0;
    background-color: rgba(10, 10, 21, 0.5);
    border-radius: 10px;
    margin-bottom: 4rem;
}

.provider-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.provider {
    text-align: center;
    transition: var(--transition);
}

.provider:hover {
    transform: translateY(-10px);
}

.provider-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(123, 44, 191, 0.1);
    color: var(--primary-color);
    font-size: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: var(--transition);
}

.provider:hover .provider-icon {
    background-color: rgba(123, 44, 191, 0.3);
    color: var(--accent-color);
}

.provider span {
    font-weight: 600;
    color: var(--text-color);
    font-size: 1.1rem;
}

/* Popular Slots */
.popular-slots {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    position: relative;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--gray-color);
    font-size: 1.1rem;
}

.highlight {
    color: #ffc107;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.slot-card {
    background-color: rgba(26, 26, 46, 0.7);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid rgba(123, 44, 191, 0.1);
}

.slot-card:hover {
    transform: translateY(-10px);
    border-color: rgba(123, 44, 191, 0.4);
}

.slot-thumb {
    height: 180px;
    position: relative;
    background-color: var(--dark-color);
    overflow: hidden;
}

.slot-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.slot-card:hover .slot-overlay {
    opacity: 1;
}

.btn-play-now {
    background-color: var(--accent-color);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-play-now:hover {
    transform: translateY(-3px);
    background-color: var(--primary-color);
}

.btn-demo {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-demo:hover {
    background-color: white;
    color: var(--dark-color);
}

.slot-provider {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    z-index: 1;
}

.slot-card h3 {
    padding: 1rem 1rem 0.5rem;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.slot-meta {
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.slot-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.slot-meta i.fa-star {
    color: #ffc107;
}

.slot-meta i.fa-bolt {
    color: var(--accent-color);
}

.slot-desc {
    padding: 0 1rem 1rem;
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.more-slots {
    text-align: center;
    margin-top: 2rem;
}

.btn-view-all {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-view-all:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Why Play Section */
.why-play {
    padding: 4rem 0;
    background-color: rgba(10, 10, 21, 0.5);
    border-radius: 10px;
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-item {
    background-color: rgba(26, 26, 46, 0.7);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid rgba(123, 44, 191, 0.1);
}

.feature-item:hover {
    transform: translateY(-10px);
    border-color: rgba(123, 44, 191, 0.4);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background-color: rgba(123, 44, 191, 0.1);
    color: var(--primary-color);
    font-size: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-item p {
    color: var(--gray-color);
    font-size: 0.95rem;
}

/* Jackpots Section */
.jackpots {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 15px;
    margin-bottom: 4rem;
    text-align: center;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
}

.jackpots::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern-dots.png') repeat;
    opacity: 0.05;
}

.jackpot-header {
    position: relative;
    z-index: 1;
}

.jackpot-header h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.jackpot-counter {
    background-color: rgba(0, 0, 0, 0.3);
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    gap: 1rem;
    margin-bottom: 2rem;
}

.counter-label {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.counter-value {
    font-size: 1.8rem;
		display: flex;
    font-weight: 700;
    color: #ffd700;
}

.jackpot-info {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.jackpot-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-jackpot {
    background-color: var(--accent-color);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}

.btn-jackpot:hover {
    background-color: #e01969;
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .slots-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1300px) {
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .provider-logos {
        gap: 1.5rem;
    }
    
    .provider-icon {
        width: 70px;
        height: 70px;
    }
    
    .jackpot-counter {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 1024px) {
    .slots-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .provider-logos {
        gap: 1rem;
    }
    
    .provider {
        flex: 0 0 calc(33.333% - 1rem);
    }
    
    .provider-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .provider span {
        font-size: 0.9rem;
    }
		.jackpot-counter {
        gap: 0.5rem;
    }
		.counter-value {
			font-size: 1.5rem;
			flex-wrap: wrap;
		}
}

@media (max-width: 576px) {
    .provider {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .jackpot-header h2 {
        font-size: 2rem;
    }
    
    .counter-value {
        font-size: 1.5rem;
    }
    
    .jackpot-info p {
        font-size: 1rem;
    }
} 