/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #1E1E1E;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: bold;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #28a745;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #20c997;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    font-weight: regular;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-primary:hover {
    background-color: #218838;
    border-color: #1e7e34;
    color: #fff;
}

.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-secondary:hover {
    background-color: #5a6268;
    color: #fff;
    border-color: #545b62;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.header {
    background-color: #151515;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header .container {
    max-width: unset;
}

.step-item {
    text-align: left;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #28a745;
}

.header-buttons {
    display: flex;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Slider */
.hero-slider {
    width: 100%;
    height: 400px;
    min-height: 200px;
    position: relative;
    margin-top: 2rem;
    margin-bottom: 2rem;
    overflow: hidden;
}

.hero-slider .swiper {
    width: 100%;
    height: 100%;
}

.hero-slider .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-position: center;
}


/* Swiper Navigation */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: #28a745;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background: rgba(40, 167, 69, 0.8);
    color: #fff;
}

.hero-slider .swiper-button-next:after,
.hero-slider .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

/* Swiper Pagination */
.hero-slider .swiper-pagination {
    bottom: 20px;
}

.hero-slider .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.hero-slider .swiper-pagination-bullet-active {
    background: #28a745;
    transform: scale(1.2);
}

/* Main Content */
.main {
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1E1E1E 0%, #2c2c2c 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #ccc;
}

.hero-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
    color: #ccc;
}

.hero-features i {
    color: #28a745;
    width: 20px;
}

.hero-text {
    color: #ccc;
    margin-bottom: 2rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Sections */
.advantages,
.games,
.bonuses,
.mobile-app,
.faq {
    padding: 4rem 0;
}

.advantages {
    background-color: #2c2c2c;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
    text-align: center;
}

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

.advantage-card {
    background-color: #1E1E1E;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-card i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.advantage-card h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.advantage-card p {
    color: #ccc;
}

/* Games Section */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.game-category {
    background-color: #2c2c2c;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.game-category img {
    width: 100%;    
    border-radius: 8px;
    margin-bottom: 1rem;
}

section:not(.hero) {
    text-align: center;
}

.game-category h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.game-category p {
    color: #ccc;
}

.games-features {
    margin: 2rem 0;
}

.games-features ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.games-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
}

.games-features i {
    color: #28a745;
}

/* Bonuses Section */
.bonuses {
    background-color: #2c2c2c;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.bonus-item {
    background-color: #1E1E1E;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.bonus-item:hover {
    transform: translateY(-5px);
}

.bonus-item i {
    font-size: 2.5rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.bonus-item h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.bonus-item p {
    color: #ccc;
}

.bonus-note {
    text-align: center;
    margin-bottom: 2rem;
    color: #ccc;
}

/* Mobile App Section */
.mobile-app {
    background-color: #1E1E1E;
}

.mobile-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mobile-text h2 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.mobile-text p {
    color: #ccc;
    margin-bottom: 2rem;
}

.mobile-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #2c2c2c;
    padding: 2rem;
    margin-bottom: 1rem;
    border-radius: 10px;
}

.faq-item h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #ccc;
}

/* Disclaimer */
.disclaimer {
    background-color: #dc3545;
    padding: 2rem 0;
    text-align: center;
}

.disclaimer p {
    color: #fff;
    font-weight: bold;
    margin: 0;
}

/* Footer */
.footer {
    background-color: #151515;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #28a745;
}

.payment-methods {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-methods i {
    font-size: 2rem;
    color: #28a745;
}

/* Additional Styles for Registration Guide */
.benefits {
    background-color: #2c2c2c;
    padding: 4rem 0;
}

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

.benefit-card {
    background-color: #1E1E1E;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #ccc;
}

.registration-steps {
    padding: 4rem 0;
}

.steps-table {
    margin: 2rem 0;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: #2c2c2c;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateX(10px);
}

.step-number {
    background-color: #28a745;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #ccc;
    margin: 0;
}

.exclusive-offers {
    background-color: #2c2c2c;
    padding: 4rem 0;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.offer-item {
    background-color: #1E1E1E;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.offer-item:hover {
    transform: translateY(-5px);
}

.offer-item img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.offer-item h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.offer-item p {
    color: #ccc;
}

.support {
    padding: 4rem 0;
}

.support-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.support-item {
    background-color: #2c2c2c;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.support-item:hover {
    transform: translateY(-5px);
}

.support-item i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.support-item h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.support-item p {
    color: #ccc;
}

.support-note {
    text-align: center;
    color: #ccc;
    margin-top: 2rem;
}

/* Additional Styles for Mobile Page */
.why-choose {
    background-color: #2c2c2c;
    padding: 4rem 0;
}

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

.feature-card {
    background-color: #1E1E1E;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #fff;
    margin-bottom: 1rem;
}

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

.download-section {
    padding: 4rem 0;
}

.download-steps {
    margin: 2rem 0;
}

.download-step {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    text-align: left;
    background-color: #2c2c2c;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.download-step:hover {
    transform: translateX(10px);
}

.step-icon {
    background-color: #28a745;
    color: #fff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #ccc;
    margin: 0;
}

.games-available {
    background-color: #2c2c2c;
    padding: 4rem 0;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem;
    margin: 2rem 0;
}

.game-item {
    background-color: #1E1E1E;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.game-item:hover {
    transform: translateY(-5px);
}

.blackjack-section .feature-item {
    flex-direction: column;
}

.slots-section .slots-image {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
}

.slots-section .slots-image img {
    width: 100%;
}

.popular-slots .slots-grid {
    grid-template-columns: repeat(2, 1fr);
}

.roulette-section .roulette-content .roulette-image {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
}

.roulette-section .roulette-content .roulette-image img {
    width: 100%;
}

.game-item img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.game-item h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.game-item p {
    color: #ccc;
}

.mobile-bonus {
    padding: 4rem 0;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.bonus-item {
    background-color: #2c2c2c;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.bonus-item:hover {
    transform: translateY(-5px);
}

.bonus-item i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.bonus-item h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.bonus-item p {
    color: #ccc;
}

.bonus-note {
    text-align: center;
    color: #ccc;
    margin-top: 2rem;
}

.comparison {
    background-color: #2c2c2c;
    padding: 4rem 0;
}

.comparison-table {
    margin: 2rem 0;
}

.table-responsive {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #1E1E1E;
    border-radius: 10px;
    overflow: hidden;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #333;
}

th {
    background-color: #28a745;
    color: #fff;
    font-weight: bold;
}

td {
    color: #ccc;
}

tr:hover {
    background-color: #2c2c2c;
}

/* Additional Styles for Casino Games Page */
.categories-overview {
    background-color: #2c2c2c;
    padding: 4rem 0;
    text-align: center;
}

.slots-section {
    padding: 4rem 0;
}

.slots-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.slots-features {
    list-style: none;
    margin: 1.5rem 0;
}

.slots-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
    color: #ccc;
}

.slots-features i {
    color: #28a745;
    width: 20px;
}

.roulette-section {
    background-color: #2c2c2c;
    padding: 4rem 0;
}

.roulette-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.roulette-variants {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.variant-card {
    background-color: #1E1E1E;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.variant-card h4 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.variant-card p {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
}

.blackjack-section {
    padding: 4rem 0;
}

.blackjack-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-item {
    background-color: #2c2c2c;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #ccc;
}

.other-games {
    background-color: #2c2c2c;
    padding: 4rem 0;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.game-card {
    background-color: #1E1E1E;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
}

.game-card i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.game-card h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.game-card p {
    color: #ccc;
    margin-bottom: 1.5rem;
}

.live-casino {
    padding: 4rem 0;
}

.live-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.live-feature {
    background-color: #2c2c2c;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.live-feature:hover {
    transform: translateY(-5px);
}

.live-feature i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.live-feature h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.live-feature p {
    color: #ccc;
}

.demo-real {
    background-color: #2c2c2c;
    padding: 4rem 0;
}

.demo-real-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.demo-info, .real-info {
    background-color: #1E1E1E;
    padding: 2rem;
    border-radius: 10px;
}

.demo-info h3, .real-info h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.demo-info ul, .real-info ul {
    list-style: none;
}

.demo-info li, .real-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
    color: #ccc;
}

.demo-info i, .real-info i {
    color: #28a745;
    width: 20px;
}

.games-summary {
    padding: 4rem 0;
}

.hero-cta {
    text-align: center;
    margin-top: 2rem;
}

.cta-note {
    margin-top: 1rem;
    color: #ccc;
}

/* Additional Styles for Slots Page */
.why-choose-slots {
    background-color: #2c2c2c;
    padding: 4rem 0;
}

.popular-slots {
    padding: 4rem 0;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.slot-card {
    background-color: #2c2c2c;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.slot-card:hover {
    transform: translateY(-5px);
}

.slot-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.no-deposit-bonus .no-deposit-image, .sports-bonus .sports-bonus-image {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
}

.no-deposit-bonus .no-deposit-image img, .sports-bonus .sports-bonus-image img {
    width: 100%;
}

.sports-bonus .sports-feature {
    flex-direction: column;
    gap: 0;
}

.why-choose-sports .sports-features {
    grid-template-columns: repeat(2, 1fr);
}

.why-choose-sports .sports-features .sports-feature {
    flex-direction: column !important;
    gap: 0;
}

.how-to-bet .betting-step {
    flex-direction: column;
    gap: 0;
}

.popular-competitions .competitions-grid {
    grid-template-columns: repeat(2, 1fr);
}

.slot-card h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.slot-card p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.rtp-volatility {
    background-color: #2c2c2c;
    padding: 4rem 0;
}

.volatility-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.volatility-card {
    background-color: #1E1E1E;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.volatility-card:hover {
    transform: translateY(-5px);
}

.volatility-card i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.volatility-card h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.volatility-card p {
    color: #ccc;
}

.volatility-tip {
    text-align: center;
    color: #ccc;
    margin-top: 2rem;
    font-style: italic;
}

.free-slots {
    padding: 4rem 0;
}

.progressive-jackpots {
    background-color: #2c2c2c;
    padding: 4rem 0;
}

/* Additional Styles for Promotions Page */
.welcome-bonus {
    padding: 4rem 0;
}

.bonus-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.bonus-feature {
    background-color: #2c2c2c;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.bonus-feature:hover {
    transform: translateY(-5px);
}

.bonus-feature i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.bonus-feature h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.bonus-feature p {
    color: #ccc;
}

.no-deposit-bonus {
    background-color: #2c2c2c;
    padding: 4rem 0;
}

.no-deposit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.no-deposit-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #1E1E1E;
    padding: 1.5rem;
    border-radius: 8px;
}

.feature-item i {
    font-size: 2rem;
    color: #28a745;
    width: 40px;
}

.feature-item h3 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #ccc;
    margin: 0;
}

.free-spins-promotions {
    padding: 4rem 0;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.promotion-card {
    background-color: #2c2c2c;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.promotion-card:hover {
    transform: translateY(-5px);
}

.promotion-card i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.promotion-card h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.promotion-card p {
    color: #ccc;
}

.promotions-note {
    text-align: center;
    color: #ccc;
    margin-top: 2rem;
}

.loyalty-program {
    background-color: #2c2c2c;
    padding: 4rem 0;
}

.loyalty-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.loyalty-feature {
    background-color: #1E1E1E;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.loyalty-feature:hover {
    transform: translateY(-5px);
}

.loyalty-feature i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.loyalty-feature h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.loyalty-feature p {
    color: #ccc;
}

.sports-bonus {
    padding: 4rem 0;
}

.sports-bonus-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.sports-bonus-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.sports-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #2c2c2c;
    padding: 1.5rem;
    border-radius: 8px;
}

.sports-feature i {
    font-size: 2rem;
    color: #28a745;
    width: 40px;
}

.sports-feature h3 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.sports-feature p {
    color: #ccc;
    margin: 0;
}

.bonus-summary {
    background-color: #2c2c2c;
    padding: 4rem 0;
}

/* Additional Styles for Sports Page */
.why-choose-sports {
    background-color: #2c2c2c;
    padding: 4rem 0;
}

.sports-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.sports-feature {
    background-color: #1E1E1E;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.sports-feature:hover {
    transform: translateY(-5px);
}

.sports-feature i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.sports-feature h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.sports-feature p {
    color: #ccc;
}

.how-to-bet {
    padding: 4rem 0;
}

.betting-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.betting-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #2c2c2c;
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.betting-step:hover {
    transform: translateX(10px);
}

.betting-step .step-number {
    background-color: #28a745;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.betting-step .step-content h3 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.betting-step .step-content p {
    color: #ccc;
    margin: 0;
}

.popular-competitions {
    background-color: #2c2c2c;
    padding: 4rem 0;
}

.competitions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.competition-card {
    background-color: #1E1E1E;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.competition-card:hover {
    transform: translateY(-5px);
}

.competition-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.popular-games .game-card img {
    width: 100%;
}

.types-of-bets .bet-types {
    grid-template-columns: repeat(2, 1fr);
}

.guides-section .guides-image {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
}

.sports-tips .tips-image {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
}

.sports-tips .tips-image img {
    width: 100%;
}

.sports-tips .tips-content {
    margin-bottom: 2rem;
}

.guides-section .guides-image img {
    width: 100%;
}

.competition-card h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.competition-card p {
    color: #ccc;
}

.competitions-note {
    text-align: center;
    color: #ccc;
    margin-top: 2rem;
}

.sports-bonuses {
    padding: 4rem 0;
}

.sports-bonus-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.sports-advantages {
    background-color: #2c2c2c;
    padding: 4rem 0;
}

/* Additional Styles for Esports Page */
.why-choose-esports {
    background-color: #2c2c2c;
    padding: 4rem 0;
}

.esports-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.esports-feature {
    background-color: #1E1E1E;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.esports-feature:hover {
    transform: translateY(-5px);
}

.esports-feature i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.esports-feature h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.esports-feature p {
    color: #ccc;
}

.popular-games {
    padding: 4rem 0;
}

.types-of-bets {
    background-color: #2c2c2c;
    padding: 4rem 0;
}

.bet-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.bet-type {
    background-color: #1E1E1E;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.bet-type:hover {
    transform: translateY(-5px);
}

.bet-type i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.bet-type h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.bet-type p {
    color: #ccc;
}

.esports-bonuses {
    padding: 4rem 0;
}

.esports-bonus-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.bonus-note {
    text-align: center;
    color: #ccc;
    margin-top: 2rem;
}

.esports-advantages {
    background-color: #2c2c2c;
    padding: 4rem 0;
}

/* Additional Styles for Blog Page */
.news-section {
    background-color: #2c2c2c;
    padding: 4rem 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.news-item {
    background-color: #1E1E1E;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-item i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.news-item h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.news-item p {
    color: #ccc;
}

.guides-section {
    padding: 4rem 0;
}

.guides-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.guides-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.guide-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #2c2c2c;
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.guide-item:hover {
    transform: translateX(10px);
}

.guide-item i {
    font-size: 2rem;
    color: #28a745;
    width: 40px;
}

.guide-item h3 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.guide-item p {
    color: #ccc;
    margin: 0;
}

.reviews-section {
    background-color: #2c2c2c;
    padding: 4rem 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.review-item {
    background-color: #1E1E1E;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.review-item:hover {
    transform: translateY(-5px);
}

.review-item i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.review-item h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.review-item p {
    color: #ccc;
}

.sports-tips {
    padding: 4rem 0;
}

.tips-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.tips-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #2c2c2c;
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.tip-item:hover {
    transform: translateX(10px);
}

.tip-item i {
    font-size: 2rem;
    color: #28a745;
    width: 40px;
}

.tip-item h3 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.tip-item p {
    color: #ccc;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero .container,
    .mobile-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .games-features ul {
        flex-direction: column;
        align-items: center;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-item:hover {
        transform: translateY(-5px);
    }
    
    .download-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .download-step:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 1440px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        text-align: center;
        background-color: #151515;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    }
    
    .nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    } 
}

@media (max-width: 768px) {
    .hero-slider {
        height: 200px;
        min-height: 200px;
    }
    
    
    .hero-slider .swiper-button-next,
    .hero-slider .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .hero-slider .swiper-button-next:after,
    .hero-slider .swiper-button-prev:after {
        font-size: 16px;
    }

    .offers-grid, .roulette-content, .demo-real-content, .popular-slots .slots-grid, .no-deposit-content, .sports-bonus-content, .why-choose-sports .sports-features, .popular-competitions .competitions-grid, .types-of-bets .bet-types {
        grid-template-columns: 1fr !important;
    }

    .guides-content {
        grid-template-columns: 1fr;
    }

    .tips-content {
        grid-template-columns: 1fr;
    }

    .guide-item, .tip-item, .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .advantages,
    .games,
    .bonuses,
    .mobile-app,
    .faq {
        padding: 2rem 0;
    }
    
    .advantages-grid,
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: 1fr !important;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 580px) {
    .header-buttons {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 15px;
    }

    .header-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .hero-slider {
        height: 120px;
        min-height: 120px;
    }
    
    .hero-slider .swiper-pagination {
        display: none;
    }

    h1 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .advantage-card,
    .bonus-item,
    .faq-item {
        padding: 1.5rem;
    }
    
    .game-category {
        padding: 1.5rem;
    }
}
