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

html {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    width: 100% !important;
    max-width: 100vw !important;
    overscroll-behavior-x: none !important;
    -webkit-overflow-scrolling: touch !important;
}

body {
    font-family: 'Arial', sans-serif;
    background: url('https://i.hizliresim.com/h4oq7ul.png') no-repeat center center fixed;
    background-size: cover;
    color: #ffffff;
    min-height: 100vh;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden !important; /* Yatay kaydırmayı engelle */
    overflow-y: auto !important; /* Dikey kaydırmaya izin ver */
    width: 100% !important;
    max-width: 100vw !important;
    overscroll-behavior-x: none !important;
    touch-action: pan-y !important;
    -webkit-touch-callout: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

@media (max-width: 768px) {
    body {
        padding: 0 !important;
        margin-top: -10px !important;
    }
}

.container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 100vh;
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px;
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
}


/* Ana İçerik */
.main-content {
    background: transparent;
    padding: 10px 20px;
    text-align: center;
    width: 100% !important;
    max-width: 700px;
    margin-right: 50px;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
}


.main-title-link {
    display: inline-block;
    margin-bottom: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: calc(180px * 3 + 18px * 2);
    text-align: center;
}

.main-title-link:hover {
    transform: scale(1.05);
}

.main-title-image {
    max-width: 100%;
    height: auto;
    max-height: 72px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.subtitle {
    font-size: 1.17rem;
    color: #00f6ab;
    font-weight: 300;
    letter-spacing: 1.8px;
    margin-bottom: 20px;
    white-space: nowrap;
    width: calc(180px * 3 + 18px * 2);
    text-align: center;
}

/* İletişim Butonları */
.contact-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    width: 100%;
    max-width: 100%;
    flex-wrap: nowrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px 18px;
    border-radius: 27px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4.5px 13.5px rgba(0, 0, 0, 0.2);
    min-width: 180px;
    max-width: 200px;
    justify-content: center;
    white-space: nowrap;
    flex: 1;
    border: none;
    cursor: pointer;
    background: none;
    color: inherit;
    font-family: inherit;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.contact-btn.telegram {
    background: linear-gradient(45deg, #0088cc, #00a8ff);
    color: white;
}

.contact-btn.chat {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
}

.contact-btn.mail {
    background: linear-gradient(45deg, #dc3545, #e74c3c);
    color: white;
}

/* Banner Bölümü - Sadece Mobilde Görünür */
.banners-section {
    margin: 45px 0;
    text-align: center;
    display: none; /* Masaüstünde gizle */
    height: 200px;
    overflow: hidden;
}

/* Banner Carousel */
.banner-carousel {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    padding: 0 20px;
    height: 200px;
}

.banner-slides {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    height: 200px;
    width: 100%;
}

.banner-slide {
    display: none;
    width: 100%;
    height: 200px;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease-in-out;
}

.banner-slide.active {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.banner-link {
    display: block;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.banner-link:hover {
    box-shadow: 0 12px 35px rgba(0, 246, 171, 0.3);
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.banner-link:hover .banner-image {
    transform: scale(1.02);
}

.banner-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

/* Banner Indicators */
.banner-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #00f6ab;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(0, 246, 171, 0.7);
}

/* Tek Banner */
.banner-single {
    max-width: 400px;
    margin: 0 auto;
    padding: 0 20px;
}

.banner-single .banner-link {
    display: block;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.banner-single .banner-link:hover {
    box-shadow: 0 12px 35px rgba(0, 246, 171, 0.3);
}

.banner-single .banner-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.banner-single .banner-link:hover .banner-image {
    transform: scale(1.02);
}

/* Sponsorlar Bölümü */
.sponsors-section {
    text-align: center;
    margin-top: 20px;
    width: calc(180px * 3 + 18px * 2);
}

.sponsors-section h3 {
    font-size: 1.62rem;
    margin-bottom: 7.2px;
    color: #00f6ab;
    font-weight: bold;
}

.sponsors-section p {
    color: #cccccc;
    margin-bottom: 22.5px;
    font-size: 0.9rem;
}

/* Deneme Bonusları Başlığı */
.bonus-title-section {
    text-align: center;
    margin-top: 22.5px;
    width: calc(180px * 3 + 18px * 2);
}

.bonus-title-section h3 {
    font-size: 1.62rem;
    margin-bottom: 0;
    color: #00f6ab;
    font-weight: bold;
}

/* Bonus Kartı */
.bonus-card-container {
    display: flex;
    justify-content: flex-start;
    margin-top: 22.5px;
    width: calc(180px * 3 + 18px * 2);
}

.bonus-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.bonus-card {
    background: rgba(26, 26, 46, 0.3);
    border: 1px solid #00f6ab;
    border-radius: 8px;
    padding: 15px;
    width: 180px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 246, 171, 0.2);
    gap: 10px;
}

.bonus-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 246, 171, 0.3);
    border-color: #00f6ab;
}

.bonus-text {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bonus-title {
    color: #ffffff;
    font-size: 1rem; /* Increased from 0.8rem */
    font-weight: 500;
    margin-bottom: 3px;
    line-height: 1.1;
}

.bonus-amount {
    color: #00f6ab;
    font-size: 1rem; /* Increased from 0.8rem */
    font-weight: 500;
    margin: 0;
}

.bonus-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border-radius: 4px;
    padding: 8px;
    min-height: 60px;
    flex: 1;
}

.logo-img {
    max-width: 100%;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.bonus-action {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.bonus-action i {
    color: #ffd700;
    font-size: 1.08rem;
}

.bonus-btn {
    background: #00f6ab;
    color: #1a1a2e;
    border: none;
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.bonus-btn:hover {
    background: #00d4aa;
    transform: scale(1.02);
}

.sponsors-carousel {
    overflow: hidden;
    width: calc(180px * 3 + 18px * 2);
    margin: 0;
    position: relative;
    display: flex;
    justify-content: flex-start;
    max-width: 100%;
    box-sizing: border-box;
}

.sponsors-track {
    display: flex;
    gap: 13.5px;
    animation: scroll 80s linear infinite;
    animation-delay: 0s;
    animation-fill-mode: both;
    width: calc(180px * 64 + 13.5px * 63);
    will-change: transform;
    transform: translateX(50%); /* Başlangıçta daha soldan başla */
}

.sponsors-carousel:hover .sponsors-track {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }
    5% {
        transform: translateX(80%); /* Çok hızlı başlangıç */
    }
    15% {
        transform: translateX(20%); /* İlk kartlar hemen gelsin */
    }
    100% {
        transform: translateX(calc(-180px * 32 - 13.5px * 32));
    }
}

.sponsor-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10.8px;
    padding: 13.5px 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    flex-shrink: 0;
}

.sponsor-logo {
    max-width: 100%;
    max-height: 72px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.sponsor-text {
    color: #00f6ab;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sponsor-text:hover {
    color: #ffffff;
    transform: scale(1.05);
}

.sponsor-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.12);
}



/* Responsive Tasarım */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        overflow-y: auto !important;
        position: relative !important;
        width: 100% !important;
        min-height: 100vh !important;
        overscroll-behavior-x: none !important;
        touch-action: pan-y !important;
    }
    
    .container {
        padding: 0;
        margin-top: -10px;
        justify-content: flex-start;
        align-items: flex-start;
        max-width: 100vw !important;
        overflow-x: hidden !important;
        width: 100% !important;
        box-sizing: border-box !important;
        min-height: auto;
    }
    
    .main-content {
        padding: 0 10px;
        margin-right: 0;
        margin-top: -20px;
        max-width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
        width: 100% !important;
    }
    
    /* Banner Mobil - Sadece mobilde göster */
    .banners-section {
        display: block !important; /* Mobilde göster */
        height: 150px;
        margin: 20px 0;
    }
    
    .banner-carousel {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .banner-single {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .banner-image {
        height: 150px;
        object-fit: cover;
    }
    
    .banner-carousel {
        height: 150px;
    }
    
    .banner-slides {
        height: 150px;
    }
    
    .banner-slide {
        height: 150px;
    }
    
    .banner-indicators {
        margin-top: 10px;
        gap: 6px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    .main-title-image {
        max-height: 60px;
        display: block;
        margin: 0;
        text-align: left;
    }
    
    .profile-section {
        text-align: left;
        display: flex;
        align-items: center;
        gap: 15px;
        margin-top: -10px;
    }
    
    .main-title-image {
        flex-shrink: 0;
    }
    
    .subtitle {
        text-align: left;
        font-size: 0.7rem;
        margin: 0;
        flex: 1;
    }
    
    .contact-buttons {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    
    .contact-btn {
        width: auto;
        min-width: 140px;
        padding: 16px 20px;
        font-size: 0.8rem;
        justify-content: center;
        flex: 1;
    }
    
    .sponsors-section {
        text-align: left;
    }
    
    .sponsors-section h2 {
        text-align: left;
    }
    
    .sponsors-section p {
        text-align: left;
    }
    
    .sponsors-carousel {
        max-width: 480px;
    }
    
    .sponsors-track {
        width: calc(150px * 64 + 10px * 63);
        animation: scroll 30s linear infinite;
    }
    
    .sponsor-item {
        min-width: 150px;
        padding: 15px;
    }
    
    .bonus-title-section {
        text-align: left !important;
        margin-left: 0;
        padding-left: 0;
    }
    
    .bonus-title-section h3 {
        text-align: left !important;
        margin-left: 0;
        padding-left: 0;
    }
    
    /* Mobilde bonus kartları 2'şer yan yana */
    .bonus-cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        max-width: 100%;
        padding: 0 5px;
    }
    
    .bonus-card {
        width: 100%;
        min-height: 160px;
        padding: 10px;
        gap: 8px;
    }
    
    .bonus-title {
        font-size: 1rem;
    }
    
    .bonus-amount {
        font-size: 1rem;
    }
    
    .bonus-btn {
        font-size: 0.6rem;
        padding: 5px 10px;
    }
    
    .logo-img {
        max-height: 40px;
    }
}

@media (max-width: 480px) {
    html, body {
        overflow-x: hidden !important;
        overflow-y: auto !important;
        position: relative !important;
        width: 100% !important;
        min-height: 100vh !important;
        overscroll-behavior-x: none !important;
        touch-action: pan-y !important;
    }
    
    .container {
        padding: 0;
        margin-top: -10px;
        justify-content: flex-start;
        align-items: flex-start;
        max-width: 100vw !important;
        overflow-x: hidden !important;
        width: 100% !important;
        box-sizing: border-box !important;
        min-height: auto;
    }
    
    .main-content {
        padding: 0 8px;
        margin-top: -20px;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .main-title-image {
        max-height: 55px;
        display: block;
        margin: 0;
        text-align: left;
    }
    
    .profile-section {
        text-align: left;
        display: flex;
        align-items: center;
        gap: 12px;
        margin-top: -10px;
    }
    
    .main-title-image {
        flex-shrink: 0;
    }
    
    .subtitle {
        font-size: 0.65rem;
        text-align: left;
        margin: 0;
        flex: 1;
    }
    
    .contact-btn {
        width: auto;
        min-width: 120px;
        padding: 14px 18px;
        font-size: 0.7rem;
        flex: 1;
    }
    
    .sponsors-section {
        text-align: left;
    }
    
    .sponsors-section h2 {
        text-align: left;
    }
    
    .sponsors-section p {
        text-align: left;
    }
    
    .sponsors-carousel {
        max-width: 384px;
    }
    
    .sponsors-track {
        width: calc(120px * 64 + 8px * 63);
        animation: scroll 25s linear infinite;
    }
    
    .sponsor-item {
        min-width: 120px;
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .bonus-title-section {
        text-align: left !important;
        margin-left: 0;
        padding-left: 0;
    }
    
    .bonus-title-section h3 {
        text-align: left !important;
        margin-left: 0;
        padding-left: 0;
    }
    
    /* Küçük mobilde bonus kartları 2'şer yan yana */
    .bonus-cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        max-width: 100%;
        padding: 0 3px;
    }
    
    .bonus-card {
        width: 100%;
        min-height: 140px;
        padding: 8px;
        gap: 6px;
    }
    
    .bonus-title {
        font-size: 0.9rem;
    }
    
    .bonus-amount {
        font-size: 0.9rem;
    }
    
    .bonus-btn {
        font-size: 0.55rem;
        padding: 4px 8px;
    }
    
    .logo-img {
        max-height: 35px;
    }
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-section,
.contact-buttons,
.sponsors-section,
.betting-sites {
    animation: fadeInUp 0.8s ease-out;
}

/* Hover Efektleri */
.ad-banner:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.sponsor-item img {
    transition: all 0.3s ease;
}

.sponsor-item:hover img {
    transform: scale(1.05);
}

