* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #8e44ad;
    transition: color 0.3s ease;
}

a:hover {
    color: #9b59b6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    background-color: #6a1b9a;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo img {
    height: 38px;
}

.header-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-login {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-login:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-register {
    background-color: #ff9800;
    border: 2px solid #ff9800;
    color: #fff;
}

.btn-register:hover {
    background-color: #f57c00;
    border-color: #f57c00;
}

.promotions-slider {
    position: relative;
    height: 75vh;
    max-height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    max-width: 800px;
    padding: 40px;
    background-color: rgba(106, 27, 154, 0.8);
    border-radius: 20px;
    color: #fff;
    transform: translateY(50px);
    opacity: 0;
    transition: all 1s ease 0.5s;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-slide {
    background-color: #ff9800;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-slide:hover {
    background-color: #f57c00;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.4);
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.slider-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: #ff9800;
    transform: scale(1.3);
}

.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    color: #6a1b9a;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(to right, #6a1b9a, #9b59b6);
    border-radius: 2.5px;
}

.casino-experience {
    background-color: #fff;
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.experience-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.experience-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.experience-image:hover img {
    transform: scale(1.05);
}

.experience-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(106, 27, 154, 0.7), transparent);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.experience-image:hover::before {
    opacity: 1;
}

.experience-text h3 {
    font-size: 2.2rem;
    color: #6a1b9a;
    margin-bottom: 25px;
}

.experience-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.experience-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: #f3e5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6a1b9a;
    font-size: 1.5rem;
}

.feature-text h4 {
    font-size: 1.2rem;
    color: #6a1b9a;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.payment-methods-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.payment-methods-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/payments/tr_papara.svg') no-repeat;
    background-size: 300px;
    opacity: 0.03;
    z-index: 0;
}

.payment-content {
    position: relative;
    z-index: 1;
}

.payment-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 50px;
}

.payment-info p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

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

.payment-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.payment-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-card-icon img {
    max-width: 100%;
    max-height: 100%;
}

.payment-card h3 {
    font-size: 1.5rem;
    color: #6a1b9a;
    margin-bottom: 15px;
}

.payment-card p {
    margin-bottom: 20px;
}

.payment-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
}

.payment-card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.payment-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6a1b9a;
    font-weight: bold;
}

.cta-section {
    background-image: url('images/banners/merhabet-casino.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(106, 27, 154, 0.8), rgba(155, 89, 182, 0.8));
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
}

.btn-cta {
    background-color: #ff9800;
    color: #fff;
    padding: 15px 50px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #f57c00;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.5);
}

footer {
    background-color: #4a148c;
    padding: 70px 0 20px;
    color: #fff;
}

.footer-section {
    margin-bottom: 50px;
}

.footer-title {
    font-size: 1.8rem;
    color: #ff9800;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ff9800;
}

.payment-methods, .game-providers {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.payment-methods img, .game-providers img {
    height: 40px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.payment-methods img:hover, .game-providers img:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #7b1fa2;
}

.footer-bottom p {
    color: #ce93d8;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .slide-content h2 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .experience-content {
        grid-template-columns: 1fr;
    }
    
    .experience-image {
        order: -1;
    }
    
    .experience-features {
        grid-template-columns: 1fr;
    }
    
    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .promotions-slider {
        height: 60vh;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .experience-text h3 {
        font-size: 1.8rem;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .header-buttons .btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .promotions-slider {
        height: 50vh;
    }
    
    .slide-content {
        padding: 30px 20px;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .btn-slide {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .experience-text h3 {
        font-size: 1.6rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .btn-cta {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
}