* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-card: #151515;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --pink: #ff6b9d;
    --green: #00d084;
    --blue: #4a90e2;
    --orange: #ff8c42;
    --purple: #9b59b6;
    --red: #e74c3c;
    --yellow: #f1c40f;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Top Banner Carousel */
.top-banner-carousel {
    width: 100%;
    overflow: hidden;
    background: var(--bg-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    height: 70px;
    margin-bottom: 0;
}

.banner-track {
    display: flex;
    height: 100%;
    width: max-content;
    will-change: transform;
    transform: translateX(100%);
}

.banner-slide {
    flex: 0 0 auto;
    min-width: 300px;
    width: 300px;
    height: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

/* Responsive slide width */
@media (max-width: 768px) {
    .banner-slide {
        min-width: 280px;
        width: 280px;
        padding: 0 12px;
    }
}

.banner-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--text-primary);
    width: 100%;
    height: 100%;
    padding: 0 15px;
    transition: background 0.3s;
}

.banner-link:hover {
    background: rgba(255, 255, 255, 0.05);
}

.banner-logo {
    max-height: 50px;
    max-width: 120px;
    object-fit: contain;
    flex-shrink: 0;
}

.banner-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.banner-site-name {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-primary);
}

.banner-promo-text {
    font-size: 12px;
    color: var(--text-secondary);
}

.banner-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
    color: white;
}

.banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.banner-btn.green { background: var(--green); }
.banner-btn.pink { background: var(--pink); }
.banner-btn.blue { background: var(--blue); }
.banner-btn.orange { background: var(--orange); }
.banner-btn.red { background: var(--red); }
.banner-btn.purple { background: var(--purple); }

/* Pause on hover - JavaScript ile kontrol ediliyor */

/* Top Header */
.top-header {
    background: var(--bg-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.profile-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    border: 2px solid var(--text-primary);
    flex-shrink: 0;
    object-fit: cover;
}

.profile-pic img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.profile-name {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link, .channel-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: transform 0.2s, opacity 0.2s;
    white-space: nowrap;
}

.social-link .icon, .channel-link .icon {
    font-size: 18px;
    flex-shrink: 0;
}

.social-link:hover, .channel-link:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.social-link.telegram {
    background: #0088cc;
    color: white;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-link.youtube {
    background: #ff0000;
    color: white;
}

.channel-link.event {
    background: var(--green);
    color: white;
}

.channel-link.chat {
    background: var(--pink);
    color: white;
}


.brand-btn.bahiscom {
    background: var(--green);
    color: white;
}

.brand-btn.casibon {
    background: var(--green);
    color: white;
    border-radius: 20px;
    padding: 12px 24px;
}

/* Main Container */
.main-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    gap: 20px;
    padding: 30px 20px;
}

/* Mobilde tek sütun */
@media (max-width: 968px) {
    .main-container {
        grid-template-columns: 1fr;
        padding: 15px 10px;
    }
}

/* Sidebars */
.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-content {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-logo {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: lowercase;
}

.sidebar-logo-img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.sidebar-star {
    font-size: 24px;
}

.sidebar-text.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--text-secondary);
}

.sidebar-promo {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-top: 10px;
}

.sidebar-promo.purple {
    background: var(--purple);
}

.sidebar-promo.green {
    background: var(--green);
}

.promo-text {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.promo-btn {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.2s;
    color: white;
    text-decoration: none;
    display: block;
}

.promo-btn:hover {
    transform: scale(1.05);
}

.promo-btn.purple {
    background: rgba(0, 0, 0, 0.3);
}

.promo-btn.green {
    background: rgba(0, 0, 0, 0.3);
}

.sidebar-footer {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: lowercase;
}

/* Main Content */
.main-content {
    min-height: 100vh;
}

.hero-logo {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 0;
    width: 100%;
}

.logo-container {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 72px;
    font-weight: 800;
    color: white;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    flex-wrap: wrap;
    justify-content: center;
}

.logo-text {
    white-space: nowrap;
}

.logo-icon {
    font-size: 64px;
    filter: drop-shadow(0 0 20px rgba(0, 208, 132, 0.8));
    flex-shrink: 0;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

/* Mobilde 2 sütun grid */
@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

.bet-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 25px 20px;
    position: relative;
    border: 2px solid transparent;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
    min-height: 200px;
    justify-content: space-between;
}

.bet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.bet-card.pink {
    border-color: var(--pink);
}

.bet-card.pink:hover {
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
}

.bet-card.green {
    border-color: var(--green);
}

.bet-card.green:hover {
    box-shadow: 0 10px 30px rgba(0, 208, 132, 0.4);
}

.bet-card.blue {
    border-color: var(--blue);
}

.bet-card.blue:hover {
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.4);
}

.bet-card.orange {
    border-color: var(--orange);
}

.bet-card.orange:hover {
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.4);
}

.bet-card.red {
    border-color: var(--red);
}

.bet-card.red:hover {
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
}

.card-medal {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
}

.card-logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-top: 10px;
    word-break: break-word;
    line-height: 1.2;
}

.card-logo-img {
    max-width: 100px;
    max-height: 50px;
    object-fit: contain;
    margin-bottom: 10px;
}

.card-logo-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.card-bonus {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    line-height: 1.4;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    word-break: break-word;
    hyphens: auto;
}

.card-btn {
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    color: white;
    text-decoration: none;
    display: block;
    text-align: center;
}

.card-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.card-btn.pink {
    background: var(--pink);
}

.card-btn.green {
    background: var(--green);
}

.card-btn.blue {
    background: var(--blue);
}

.card-btn.orange {
    background: var(--orange);
}

.card-btn.red {
    background: var(--red);
}

/* Bottom Brands */
.bottom-brands {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-logo {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 10px 20px;
    border-radius: 6px;
    background: var(--bg-card);
    transition: color 0.2s, transform 0.2s;
    cursor: pointer;
    text-decoration: none;
}

.brand-logo:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* Responsive Design - Desktop ve Tablet */
@media (max-width: 1200px) {
    .main-container {
        grid-template-columns: 180px 1fr 180px;
    }
}

@media (max-width: 968px) {
    .main-container {
        grid-template-columns: 1fr;
        padding: 20px 15px;
    }
    
    .sidebar {
        display: none;
    }
    
    .cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* Mobil stiller mobile.css dosyasında override edilecek */
