/* Esports Page Specific Styles */

/* Why Bet on Esport Section */
.why-bet-esport {
    padding: 60px 0;
    background: linear-gradient(135deg, #291D30 0%, #3e1a4b 100%);
    color: #fff;
}

.why-bet-esport h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #17b221;
}

.esport-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.esport-feature {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(23, 178, 33, 0.3);
    transition: all 0.3s ease;
}

.esport-feature:hover {
    transform: translateY(-5px);
    background: rgba(23, 178, 33, 0.1);
    border-color: #17b221;
}

.esport-feature i {
    font-size: 3rem;
    color: #17b221;
    margin-bottom: 20px;
}

.esport-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.esport-feature p {
    color: #ccc;
    line-height: 1.6;
}

.esport-buttons {
    text-align: center;
    margin-top: 40px;
}

.esport-buttons .btn {
    margin: 0 10px;
}

/* CS2 Betting Section */
.cs2-betting {
    padding: 60px 0;
    background: #1a1a1a;
    color: #fff;
}

.cs2-betting h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: #17b221;
}

.cs2-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.cs2-feature {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    border-radius: 15px;
    border: 1px solid #444;
    transition: all 0.3s ease;
}

.cs2-feature:hover {
    transform: translateY(-5px);
    border-color: #17b221;
}

.cs2-feature i {
    font-size: 3rem;
    color: #17b221;
    margin-bottom: 20px;
}

.cs2-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.cs2-feature p {
    color: #ccc;
    line-height: 1.6;
}

.cs2-buttons {
    text-align: center;
    margin-top: 40px;
}

.cs2-buttons .btn {
    margin: 0 10px;
}

/* League of Legends Betting Section */
.lol-betting {
    padding: 60px 0;
    background: linear-gradient(135deg, #291D30 0%, #3e1a4b 100%);
    color: #fff;
}

.lol-betting h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: #17b221;
}

.lol-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.lol-feature {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(23, 178, 33, 0.3);
    transition: all 0.3s ease;
}

.lol-feature:hover {
    transform: translateY(-5px);
    background: rgba(23, 178, 33, 0.1);
    border-color: #17b221;
}

.lol-feature i {
    font-size: 3rem;
    color: #17b221;
    margin-bottom: 20px;
}

.lol-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.lol-feature p {
    color: #ccc;
    line-height: 1.6;
}

.lol-buttons {
    text-align: center;
    margin-top: 40px;
}

.lol-buttons .btn {
    margin: 0 10px;
}

/* Dota 2 Betting Section */
.dota2-betting {
    padding: 60px 0;
    background: #1a1a1a;
    color: #fff;
}

.dota2-betting h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: #17b221;
}

.dota2-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.dota2-feature {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    border-radius: 15px;
    border: 1px solid #444;
    transition: all 0.3s ease;
}

.dota2-feature:hover {
    transform: translateY(-5px);
    border-color: #17b221;
}

.dota2-feature i {
    font-size: 3rem;
    color: #17b221;
    margin-bottom: 20px;
}

.dota2-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.dota2-feature p {
    color: #ccc;
    line-height: 1.6;
}

.esport-table {
    margin: 40px 0;
    background: #2a2a2a;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #444;
}

.esport-table h3 {
    text-align: center;
    padding: 20px;
    background: #17b221;
    color: #fff;
    margin: 0;
    font-size: 1.5rem;
}

.esport-table table {
    width: 100%;
    border-collapse: collapse;
}

.esport-table th,
.esport-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #444;
}

.esport-table th {
    background: #3a3a3a;
    color: #17b221;
    font-weight: 600;
}

.esport-table td {
    color: #fff;
}

.esport-table tr:hover {
    background: rgba(23, 178, 33, 0.1);
}

.dota2-buttons {
    text-align: center;
    margin-top: 40px;
}

.dota2-buttons .btn {
    margin: 0 10px;
}

/* Valorant and Other Esport Section */
.valorant-other {
    padding: 60px 0;
    background: linear-gradient(135deg, #291D30 0%, #3e1a4b 100%);
    color: #fff;
}

.valorant-other h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: #17b221;
}

.valorant-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.valorant-feature {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(23, 178, 33, 0.3);
    transition: all 0.3s ease;
}

.valorant-feature:hover {
    transform: translateY(-5px);
    background: rgba(23, 178, 33, 0.1);
    border-color: #17b221;
}

.valorant-feature i {
    font-size: 3rem;
    color: #17b221;
    margin-bottom: 20px;
}

.valorant-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.valorant-feature p {
    color: #ccc;
    line-height: 1.6;
}

.valorant-buttons {
    text-align: center;
    margin-top: 40px;
}

.valorant-buttons .btn {
    margin: 0 10px;
}

/* Live Esport Betting Section */
.live-esport-betting {
    padding: 60px 0;
    background: #1a1a1a;
    color: #fff;
}

.live-esport-betting h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: #17b221;
}

.live-esport-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.live-esport-feature {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    border-radius: 15px;
    border: 1px solid #444;
    transition: all 0.3s ease;
}

.live-esport-feature:hover {
    transform: translateY(-5px);
    border-color: #17b221;
}

.live-esport-feature i {
    font-size: 3rem;
    color: #17b221;
    margin-bottom: 20px;
}

.live-esport-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.live-esport-feature p {
    color: #ccc;
    line-height: 1.6;
}

.live-esport-buttons {
    text-align: center;
    margin-top: 40px;
}

.live-esport-buttons .btn {
    margin: 0 10px;
}

/* Bonuses for Esport Section */
.esport-bonuses {
    padding: 60px 0;
    background: linear-gradient(135deg, #291D30 0%, #3e1a4b 100%);
    color: #fff;
}

.esport-bonuses h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: #17b221;
}

.esport-bonus-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.esport-bonus-feature {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(23, 178, 33, 0.3);
    transition: all 0.3s ease;
}

.esport-bonus-feature:hover {
    transform: translateY(-5px);
    background: rgba(23, 178, 33, 0.1);
    border-color: #17b221;
}

.esport-bonus-feature i {
    font-size: 3rem;
    color: #17b221;
    margin-bottom: 20px;
}

.esport-bonus-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.esport-bonus-feature p {
    color: #ccc;
    line-height: 1.6;
}

.esport-bonus-table {
    margin: 40px 0;
    background: #2a2a2a;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #444;
}

.esport-bonus-table h3 {
    text-align: center;
    padding: 20px;
    background: #17b221;
    color: #fff;
    margin: 0;
    font-size: 1.5rem;
}

.esport-bonus-table table {
    width: 100%;
    border-collapse: collapse;
}

.esport-bonus-table th,
.esport-bonus-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #444;
}

.esport-bonus-table th {
    background: #3a3a3a;
    color: #17b221;
    font-weight: 600;
}

.esport-bonus-table td {
    color: #fff;
}

.esport-bonus-table tr:hover {
    background: rgba(23, 178, 33, 0.1);
}

.esport-bonus-buttons {
    text-align: center;
    margin-top: 40px;
}

.esport-bonus-buttons .btn {
    margin: 0 10px;
}

/* Mobile Esport Betting Section */
.mobile-esport-betting {
    padding: 60px 0;
    background: #1a1a1a;
    color: #fff;
}

.mobile-esport-betting h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: #17b221;
}

.mobile-esport-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.mobile-esport-feature {
    display: flex;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    border-radius: 15px;
    border: 1px solid #444;
    transition: all 0.3s ease;
}

.mobile-esport-feature:hover {
    transform: translateY(-5px);
    border-color: #17b221;
}

.mobile-esport-feature i {
    font-size: 2rem;
    color: #17b221;
    margin-right: 20px;
    min-width: 40px;
}

.mobile-esport-feature span {
    color: #fff;
    font-size: 1.1rem;
}

.mobile-esport-buttons {
    text-align: center;
    margin-top: 40px;
}

.mobile-esport-buttons .btn {
    margin: 0 10px;
}

/* Security and Fair Play Section */
.security-fair-play {
    padding: 60px 0;
    background: linear-gradient(135deg, #291D30 0%, #3e1a4b 100%);
    color: #fff;
}

.security-fair-play h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: #17b221;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.security-feature {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(23, 178, 33, 0.3);
    transition: all 0.3s ease;
}

.security-feature:hover {
    transform: translateY(-5px);
    background: rgba(23, 178, 33, 0.1);
    border-color: #17b221;
}

.security-feature i {
    font-size: 3rem;
    color: #17b221;
    margin-bottom: 20px;
}

.security-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.security-feature p {
    color: #ccc;
    line-height: 1.6;
}

.security-buttons {
    text-align: center;
    margin-top: 40px;
}

.security-buttons .btn {
    margin: 0 10px;
}

/* Mini Guide Section */
.mini-guide {
    padding: 60px 0;
    background: #1a1a1a;
    color: #fff;
}

.mini-guide h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #17b221;
}

.guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.guide-step {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    border-radius: 15px;
    border: 1px solid #444;
    transition: all 0.3s ease;
}

.guide-step:hover {
    transform: translateY(-5px);
    border-color: #17b221;
}

.guide-number {
    width: 60px;
    height: 60px;
    background: #17b221;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.guide-step p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .esport-features,
    .cs2-features,
    .lol-features,
    .dota2-features,
    .valorant-features,
    .live-esport-features,
    .esport-bonus-features,
    .security-features,
    .guide-steps {
        grid-template-columns: 1fr;
    }
    
    .mobile-esport-features {
        grid-template-columns: 1fr;
    }
    
    .mobile-esport-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .mobile-esport-feature i {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .esport-table,
    .esport-bonus-table {
        overflow-x: auto;
    }
    
    .esport-table table,
    .esport-bonus-table table {
        min-width: 600px;
    }
    
    .esport-buttons,
    .cs2-buttons,
    .lol-buttons,
    .dota2-buttons,
    .valorant-buttons,
    .live-esport-buttons,
    .esport-bonus-buttons,
    .mobile-esport-buttons,
    .security-buttons {
        text-align: center;
    }
    
    .esport-buttons .btn,
    .cs2-buttons .btn,
    .lol-buttons .btn,
    .dota2-buttons .btn,
    .valorant-buttons .btn,
    .live-esport-buttons .btn,
    .esport-bonus-buttons .btn,
    .mobile-esport-buttons .btn,
    .security-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}
