/* Header Styles */
header {
    background-color: #1a1d24;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
.header {
    background: var(--header-color);
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Main Content */
main {
    padding-top: 70px; /* Sadece header yüksekliği kadar */
    margin-top: 3rem;
}

/* Slider Styles */
.slider-container {
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin: 1rem auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive Slider */
@media (max-width: 1200px) {
    .slider-container {
        height: 350px;
    }
}

@media (max-width: 992px) {
    .slider-container {
        height: 300px;
    }
}

@media (max-width: 768px) {
    main {
        padding-top: 60px;
        margin-top: 6rem;
    }

    .slider-container {
        height: 250px;
        border-radius: 15px;
    }

    .slider-arrow {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .slider-dots {
        bottom: 10px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 576px) {
    main {
        padding-top: 50px;
        margin-top: 5rem;
    }

    .slider-container {
        height: 200px;
        border-radius: 10px;
    }

    .slider-arrow {
        width: 25px;
        height: 25px;
        font-size: 14px;
    }
}


/* Logo */
.logo {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.site-logo {
    height: 50px; /* Yüksekliği artırdım */
    width: auto;
    object-fit: contain;
    max-width: 200px; /* Maksimum genişlik ekledim */
}

.logo img {
    height: 100%;
    width: auto;
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 20px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-link i {
    font-size: 16px;
}

/* User Section */
.user-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Balance */
.balance {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 8px;
}

.coin-icon {
    height: 20px;
    width: 20px;
}

.coin-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-right: 5px;
}

.amount {
    color: var(--text-color);
    font-weight: 500;
    font-size: 14px;
}

/* User Menu */
.user-menu {
    position: relative;
}

.user-menu-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.user-menu-trigger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.username {
    color: var(--text-color);
    font-size: 14px;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 200px;
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    padding: 0.5rem 0;
    z-index: 1000;
    display: none;
}

.user-menu:hover .user-dropdown {
    display: block;
}

.user-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.user-dropdown a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 0 10px;
    height: 40px !important;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-login {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: #ffffff;
}

.btn-login:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.btn-register {
    background: var(--primary-color);
    color: #000000;
    border: 1px solid #000000;
}

.btn-register:hover {
    background: var(--secondary-color);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 15px;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }
}

@media (max-width: 768px) {
    .site-logo {
        max-width: 75px;
    }

    .header-content {
        padding: 0.5rem 1rem;
    }

    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        color: #fff;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.5rem;
        margin-right: 1rem;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--secondary-color);
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .auth-buttons {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-left: auto;
    }

    .auth-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

:root {
    --primary-color: #15789a;
    --secondary-color: #1a1d24;
    --header-color: #1a1a1a;
    --text-color: #ffffff;
    --accent-color: #2a2e35;
    --gradient-green: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--secondary-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    margin-top: 120px; /* Header yüksekliği + istenen boşluk */
    margin-bottom: 0;
    padding-top: 0;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 1rem 1rem;
}

.mobile-menu-btn {
    display: none;
}

.logo {
    margin-right: auto;
}

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

/* Giriş yapmış kullanıcı için stiller */
.user-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.coin-balance {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(42, 46, 53, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.coin-balance:hover {
    background: rgba(42, 46, 53, 0.9);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.coin-balance .amount {
    font-weight: 500;
    color: var(--text-color);
}

.coin-balance .green-arrow {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.user-profile {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
}

.profile-pic {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.fa-chevron-down {
    font-size: 0.8rem;
    color: var(--text-color);
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.profile-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--secondary-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px;
    min-width: 200px;
    z-index: 1000;
}

.user-profile.active .profile-dropdown {
    display: block;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    transition: background-color 0.3s ease;
    cursor: pointer;
    width: 100%;
    border: none;
    background: none;
    text-align: left;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.dropdown-item i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.dropdown-item.logout {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ff4444;
}

.dropdown-item.logout i {
    color: #ff4444;
}

/* Giriş yapmamış kullanıcı için stiller */
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.auth-btn {
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
}

.login {
    background-color: var(--accent-color);
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.register {
    background: var(--gradient-green);
    color: var(--secondary-color);
}

/* Login Modal Styles */
.login-modal {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 15px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.login-modal h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 25px;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-modal .form-group {
    margin-bottom: 20px;
    position: relative;
}

.login-modal .form-group label {
    display: block;
    color: #ddd;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}

.login-modal .form-group input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.login-modal .form-group input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.login-modal .form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.login-modal .submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.login-modal .submit-btn:hover {
    background: linear-gradient(45deg, #45a049, #4CAF50);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

.login-modal .close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.login-modal .close:hover {
    opacity: 1;
}

.login-modal .forgot-password {
    text-align: right;
    margin-top: -15px;
    margin-bottom: 20px;
}

.login-modal .forgot-password a {
    color: var(--primary-color);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.login-modal .forgot-password a:hover {
    color: #45a049;
    text-decoration: underline;
}

.login-modal .register-link {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-link.register-link{
    text-align: left;
    margin-top: 0;
}


.login-modal .register-link span {
    color: #ddd;
    font-size: 14px;
}

.login-modal .register-link a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    margin-left: 5px;
    transition: color 0.3s ease;
}

.login-modal .register-link a:hover {
    color: #45a049;
    text-decoration: underline;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .login-modal {
        width: 95%;
        padding: 20px;
    }

    .login-modal h2 {
        font-size: 20px;
    }

    .login-modal .form-group input {
        padding: 10px 12px;
    }

    .login-modal .submit-btn {
        padding: 12px;
        font-size: 14px;
    }
}

/* User actions düzenlemesi */
.user-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    margin-right: 0.5rem;
}

.logo a {
    display: flex;
    text-decoration: none;
}

.logo img {
    object-fit: contain;
    transition: opacity 0.3s ease
}

.logo a:hover img {
    opacity: 0.9;
}

.live-badge {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin: 0 auto;
}

.nav-item {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.nav-item:hover {
    opacity: 1;
}

.puan-btn {
    background: var(--gradient-green);
    color: var(--secondary-color);
    padding: 0.5rem 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    animation: pulse 2s infinite;
}

.auth-btn {
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.login {
    background-color: var(--accent-color);
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.register {
    background: var(--gradient-green);
    color: var(--secondary-color);
}

/* Slider Styles */
main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
}

.slider-container {
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    display: block;
    text-decoration: none;
    border-radius: 20px;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s ease;
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

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

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: white;
}

/* Quick Links Styles */
.section-title {
    margin: 1rem auto 0.5rem;
    font-size: 1.5rem;
}

.quick-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1400px;
    margin: 1rem auto;
    padding: 0 1rem;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--accent-color);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-link:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.quick-link i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.link-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.link-text span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Social Links Styles */
.social-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto 8rem;
    padding: 0 2rem;
}

.social-card {
    background-color: var(--accent-color);
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-info h3 {
    margin-bottom: 0.5rem;
}

.social-info p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.social-info strong {
    display: block;
    color: var(--primary-color);
    margin: 0.5rem 0;
}

.social-btn {
    background: #FE9426;
    color: #000000;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.social-btn:after {
    content: '';
    position: absolute;
    overflow: hidden;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
            to bottom right,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.social-btn:hover:after {
    transform: rotate(45deg) translate(50%, 50%);
}

.social-icon i {
    font-size: 3rem;
    opacity: 0.5;
}

.telegram .social-icon i {
}

.twitter .social-icon i {
}

.instagram .social-icon i {
}

.youtube .social-icon i {
}

.twitch .social-icon i {
}

.kick .social-icon i {
}

/* Sosyal kartlar için hover efekti */
.social-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}


/* Sosyal butonlar için parlama efekti */

/* Sosyal medya butonları için renkler */
.social-link.discord {
    background-color: #7289da;
}

.social-card.discord i {
    color: #7289da;
}

.social-link.telegram {
    background-color: #0088cc;
}

.social-card.telegram i {
    color: #0088cc;
}

.social-link.kick {
    background-color: #00ff84;
    color: #1a1d24;
}

.social-card.kick i {
    color: #00ff84;
}

.social-link.twitch {
    background-color: #9146ff;
}

.social-card.twitch i {
    color: #9146ff
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-card.instagram i {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-link.youtube {
    background-color: #ff0000;
}

.social-card.youtube i {
    color: #ff0000
}

.social-card.twitter i {
    color: #1DA1F2
}

@media (max-width: 768px) {
    .footer-logo img {
        max-width: 80px; /* Mobilde de biraz büyüttük */
    }
}

@media (max-width: 768px) {
    .copyright {
        text-align: center;
        font-size: 0.7rem; /* Mobilde daha da küçük */
    }
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .quick-links {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media screen and (max-width: 768px) {
    #codeModal .modal-content {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, 50%);
        transition: 400ms;
    }

    /* Header düzenlemeleri */
    header {
        padding: 0.8rem 0rem;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        background: none;
        border: none;
        color: var(--text-color);
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.5rem;
    }

    .logo {
        display: flex;
        align-items: center;
        margin-left: 0.5rem;
    }

    .logo img {
        height: 24px;
    }

    .user-section {
        display: flex;
        align-items: center;
        gap: 0.3rem;
    }

    .coin-balance i {
        display: none;
        visibility: hidden;
    }

    .coin-balance {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(42, 46, 53, 0.8);
        padding: 0.4rem 0.8rem;
        border-radius: 5px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--accent-color);
        padding: 1rem;
        flex-direction: column;
        gap: 0.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    /* Header içindeki elementlerin yatay hizalaması */
    .header-left {
        display: flex;
        align-items: center;
    }

    .header-right {
        display: flex;
        align-items: center;
    }

    .user-actions {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        gap: 0.8rem;
        margin: 0;
        padding: 0.5rem 0;
    }

    .auth-btn,
    .puan-btn {
        flex: 1;
        max-width: 150px;
        min-width: 120px;
        text-align: center;
        justify-content: center;
        padding: 0.8rem;
    }

    /* Butonları yan yana düzgün hizalama */
    .user-actions {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
    }

    /* Slider düzenlemeleri */
    .slider-container {
        height: 120px;
        border-radius: 8px;
    }


    .slide-content h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .brand-logo {
        height: 25px;
    }

    /* Quick Links düzenlemeleri */
    .quick-links {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    /* Social Links düzenlemeleri */
    .social-links {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .social-card {
        padding: 1rem;
    }

    /* Footer düzenlemeleri */
    .footer-content {
        flex-direction: column;
        gap: .5rem;
        text-align: center;
        padding: 1rem;
    }

    .social-icons {
        justify-content: center;
    }

    .copyright {
        text-align: center;
    }

    .social-links {
        margin-bottom: 3rem;
    }

    footer {
        padding: 2rem 0;
    }

    /* Sosyal medya grid düzeni */
    .mobile-social-links {
        display: none;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        padding: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 1rem;
    }

    .nav-links.active .mobile-social-links {
        display: grid;
    }

    .social-link {
        display: flex;
        align-items: center;
        padding: 0.8rem 1.2rem;
        border-radius: 8px;
        color: var(--text-color);
        text-decoration: none;
        transition: transform 0.3s ease;
    }

    .social-link i {
        font-size: 1.2rem;
    }

    .social-link span {
        font-size: 0.9rem;
        font-weight: 500;
    }

    @media screen and (max-width: 768px) {
        .nav-links.active .mobile-social-links {
            display: grid;
        }

        .mobile-social-links {
            width: 100%;
        }

        .social-link {
            justify-content: flex-start;
        }

        /* Son tek buton için tam genişlik */
        .mobile-social-links a:last-child:nth-child(odd) {
            grid-column: 1 / -1;
        }
    }

    .coin-balance {
        padding: 0.4rem 0.4rem;
    }

    .amount {
        font-size: 0.9rem;
    }
}

/* Mobil menü için */
@media screen and (max-width: 768px) {
    header {
        position: relative;
    }

    nav {
        height: 60px;
        position: relative;
        z-index: 1000;
        padding: 0.3rem 0;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: var(--accent-color);
        padding: 1rem;
        flex-direction: column;
        gap: 0.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-item {
        width: 100%;
        padding: 0.8rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-item:last-child {
        border-bottom: none;
    }
}

/* Tablet için media query */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .slider-container {
        height: 300px;
    }

    .slide-content h2 {
        font-size: 2rem;
    }
}

/* Modern Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    animation: fadeIn 0.3s;
}

.modal::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);

}

.modal-content {
    background: linear-gradient(145deg, #1e2329, #2a2f38);
    margin: 8vh auto;
    padding: 2.5rem;
    width: 90%;
    max-width: 380px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: slideIn 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 1.8rem;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #00ff84;
    box-shadow: 0 0 0 4px rgba(0, 255, 132, 0.1);
    background-color: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-primary {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #00ff84, #00b4d8);
    border: none;
    border-radius: 12px;
    color: #1a1d24;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 132, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.close:hover {
    color: #fff;
    transform: rotate(90deg);
}

.alert {
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    background-color: rgba(231, 76, 60, 0.15);
    border: 2px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
}

.register-text {
    text-align: center;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

#showRegister {
    color: #00ff84;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

#showRegister:hover {
    color: #00b4d8;
    text-decoration: underline;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Profil Dropdown Styles */
.user-profile {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
}

.profile-pic {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.fa-chevron-down {
    font-size: 0.8rem;
    color: var(--text-color);
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.profile-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--secondary-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px;
    min-width: 200px;
    z-index: 1000;
}

.user-profile.active .profile-dropdown {
    display: block;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    transition: background-color 0.3s ease;
    cursor: pointer;
    width: 100%;
    border: none;
    background: none;
    text-align: left;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.dropdown-item i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.dropdown-item.logout {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ff4444;
}

.dropdown-item.logout i {
    color: #ff4444;
}

/* Header'ın altındaki içeriği düzgün göstermek için */
main {
    margin-top: 120px; /* Header yüksekliği + istenen boşluk */
    padding-top: 0;
}

/* Mobil görünüm için */
@media screen and (max-width: 768px) {
    .user-profile {
        padding: unset;
    }

    .user-profile {
        padding: 0.4rem;
    }

    .user-profile .profile-pic {
        height: 20px;
        width: 20px;
    }

    main {
        margin-top: 40px;
    }

    .section-title {
        margin: 0.8rem auto 0.4rem;
    }
}

/* Profile Page */
.profile-section {
    margin-top: 1rem;
    padding: 2rem;
    background: var(--secondary-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-header h2 {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.profile-header p {
    color: var(--text-color);
    font-size: 1.1rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .verified-badge {
        display: none !important;
    }

    .profile-header h2 {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }

    .profile-header p {
        font-size: 1rem;
        margin-top: 0;
    }

    .profile-section {
        margin-top: 1rem;
        padding: 1rem;
    }
}

/* Kod Modal Styles */
.code-form {
    text-align: center;
}

.code-form h2 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.code-submit-btn {
    width: 100%;
    padding: 0.8rem;
    background: var(--gradient-green);
    border: none;
    border-radius: 5px;
    color: var(--secondary-color);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.code-submit-btn:hover {
    transform: translateY(-2px);
}

/* Success Message */
.success-message {
    color: var(--primary-color);
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    display: none;
}

/* Bildirim Stilleri */
.notification {
    position: fixed;
    right: 20px;
    top: 20px;
    background-color: #333;
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.3s ease-out;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0 5px;
}

.notification-close:hover {
    color: #ddd;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Address Grid */
.address-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.address-item {
    background: var(--background-color);
    border-radius: 12px;
    padding: 1.5rem;
    min-width: 550px; /* Kartların minimum genişliği artırıldı */
}

/* Responsive Grid */
@media (max-width: 1400px) {
    .address-item {
        min-width: 450px;
    }
}

@media (max-width: 1200px) {
    .address-item {
        min-width: 400px;
    }
}

@media (max-width: 992px) {
    .address-item {
        min-width: 350px;
    }
}

@media (max-width: 768px) {
    .address-grid {
        grid-template-columns: 1fr;
    }

    .address-item {
        min-width: auto;
        padding: 1.2rem;
    }
}

/* Register Modal Styles */
.register-modal {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 15px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.register-modal h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 25px;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.register-modal .form-group {
    margin-bottom: 20px;
    position: relative;
}

.register-modal .form-group label {
    display: block;
    color: #ddd;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}

.register-modal .form-group input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.register-modal .form-group input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.register-modal .form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.register-modal .submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.register-modal .submit-btn:hover {
    background: linear-gradient(45deg, #ff8e8e, #ff6b6b);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.register-modal .close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.register-modal .close:hover {
    opacity: 1;
}

.register-modal .bonus-text {
    text-align: center;
    color: #ff6b6b;
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    padding: 10px;
    border: 1px dashed rgba(255, 107, 107, 0.5);
    border-radius: 8px;
    background: rgba(255, 107, 107, 0.1);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .register-modal {
        width: 95%;
        padding: 20px;
    }

    .register-modal h2 {
        font-size: 20px;
    }

    .register-modal .form-group input {
        padding: 10px 12px;
    }

    .register-modal .submit-btn {
        padding: 12px;
        font-size: 14px;
    }
}

/* Toast Notification Styles */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--accent-color);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    animation: slideIn 0.3s ease;
}

.toast-notification.success {
    border-left: 4px solid var(--primary-color);
}

.toast-notification.warning {
    border-left: 4px solid #ff9800;
}

.toast-notification i {
    font-size: 1.5rem;
}

.toast-notification.success i {
    color: var(--primary-color);
}

.toast-notification.warning i {
    color: #ff9800;
}

.toast-content p {
    margin: 0;
    font-weight: 500;
}

.toast-content span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.toast-notification.fade-out {
    animation: fadeOut 0.3s ease forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Market link özel stili */
.quick-link.market-link {
    background: linear-gradient(45deg, var(--accent-color), #3a3f48);
    border: 1px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.quick-link.market-link:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 132, 0.1), transparent);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Grid düzenini 4 kolona çıkaralım */
.quick-links {
    grid-template-columns: repeat(4, 1fr);
}

/* Responsive düzenlemeler */
@media screen and (max-width: 1024px) {
    .quick-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .quick-links {
        grid-template-columns: 1fr;
    }
}

/* Quick Links Grid */
.quick-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 0 1rem;
}

.quick-link {
    background: var(--accent-color);
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-link i {
    font-size: 2rem;
    color: var(--primary-color);
}

.link-text {
    flex: 1;
}

.link-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.link-text span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.quick-link:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

/* Market Link özel stili */
.market-link {
    background: linear-gradient(45deg, var(--accent-color), #3a3f48);
    border: 1px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.market-link:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 132, 0.1), transparent);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Responsive düzenlemeler */
@media screen and (max-width: 992px) {
    .quick-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .quick-links {
        grid-template-columns: 1fr;
    }

    .quick-link {
        padding: 1.2rem;
    }

    .quick-link i {
        font-size: 1.5rem;
    }

    .link-text h3 {
        font-size: 1rem;
    }

    .link-text span {
        font-size: 0.8rem;
    }
}

/* Share Modal Styles */
.share-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
}

.share-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.share-form label {
    color: var(--text-color);
    font-weight: 500;
}

.share-form input {
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--accent-color);
    color: var(--text-color);
    font-size: 1rem;
}

.share-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.share-form .submit-btn {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.share-form .submit-btn:hover {
    opacity: 0.9;
}

.form-note {
    text-align: center;
    color: var(--text-color);
    opacity: 0.8;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Paylaş butonu stilleri */
.share-win-btn {
    display: flex;
    justify-content: flex-end;
    max-width: 1400px;
    margin: 0 auto 1rem;
    padding: 0 1rem;
}

.share-button {
    background: var(--gradient-green);
    color: var(--secondary-color);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.share-button:hover {
    transform: translateY(-2px);
}

.share-button i {
    font-size: 1.1rem;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .share-win-btn {
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .share-button {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }
}

/* Daily Reward */
.daily-reward-section {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
    animation: slideIn 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.notification.success {
    background: #4CAF50;
    color: white;
}

.notification.error {
    background: #f44336;
    color: white;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0 5px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.notification-close:hover {
    opacity: 1;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Address Grid */
.address-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.address-item {
    background: var(--background-color);
    border-radius: 12px;
    padding: 1.5rem;
    min-width: 550px; /* Kartların minimum genişliği artırıldı */
}

/* Responsive Grid */
@media (max-width: 1400px) {
    .address-item {
        min-width: 450px;
    }
}

@media (max-width: 1200px) {
    .address-item {
        min-width: 400px;
    }
}

@media (max-width: 992px) {
    .address-item {
        min-width: 350px;
    }
}

@media (max-width: 768px) {
    .address-grid {
        grid-template-columns: 1fr;
    }

    .address-item {
        min-width: auto;
        padding: 1.2rem;
    }
}

/* Modern Başarılı Bildirimi */
.modern-popup {
    padding: 2rem !important;
    border-radius: 20px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
}

.success-animation {
    text-align: center;
}

.success-title {
    color: #fff;
    font-size: 24px;
    margin: 20px 0 10px;
    font-weight: 600;
}

.success-message {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin: 0;
}

.checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #4CAF50;
    stroke-miterlimit: 10;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke: #4CAF50;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke: #fff;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .modern-popup {
        padding: 1.5rem !important;
    }

    .success-title {
        font-size: 20px;
    }

    .success-message {
        font-size: 14px;
    }

    .checkmark {
        width: 60px;
        height: 60px;
    }
}

.social-section {
    padding: 2rem 0;
    text-align: center;
    position: relative;
}

.social-subtitle {
    color: #8a8f98;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.social-grid {
    display: flex;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    position: relative;
}

.social-grid::-webkit-scrollbar {
    display: none;
}

.social-item {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.social-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 1.25rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: brightness(1.2);
    transition: all 0.3s ease;
    opacity: 0;
}

.social-item:hover .social-icon::before {
    opacity: 1;
}

.social-icon i {
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-item:hover .social-icon i {
    transform: scale(1.1);
}

.social-info {
    text-align: left;
}

.social-username {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
    transition: all 0.3s ease;
}

.social-name {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-item:hover .social-username {
    color: #fff;
}

.social-item:hover .social-name {
    color: rgba(255, 255, 255, 0.9);
}

/* Platform özel renkler */
.social-item.instagram .social-icon {
    background: linear-gradient(45deg, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: #fff;
}

.social-item.telegram .social-icon {
    background: linear-gradient(135deg, #0088cc, #00b0ff);
    color: #fff;
}

.social-item.youtube .social-icon {
    background: linear-gradient(135deg, #FF0000, #FF4444);
    color: #fff;
}

.social-item.discord .social-icon {
    background: linear-gradient(135deg, #5865F2, #7289da);
    color: #fff;
}

.social-item.twitch .social-icon {
    background: linear-gradient(135deg, #9146FF, #a970ff);
    color: #fff;
}

.social-item.twitter .social-icon {
    background: linear-gradient(135deg, #1DA1F2, #4fc3f7);
    color: #fff;
}

@media (max-width: 768px) {
    .social-grid {
        padding: 0 3rem;
        gap: 1rem;
    }

    .social-item {
        padding: 1rem;
    }

    .social-icon {
        width: 45px;
        height: 45px;
        margin-right: 1rem;
    }

    .social-icon i {
        font-size: 1.25rem;
    }

    .social-username {
        font-size: 1rem;
    }

    .social-name {
        font-size: 0.85rem;
    }

    /* Mobil scroll butonları */
    .social-scroll-button {
        display: flex;
        width: 28px;
        height: 28px;
    }

    .social-scroll-button i {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .social-grid {
        padding: 0 2.5rem;
    }

    .social-item {
        padding: 0.75rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        margin-right: 0.75rem;
    }

    .social-username {
        font-size: 0.9rem;
    }

    .social-name {
        font-size: 0.8rem;
    }

    .social-scroll-button {
        width: 24px;
        height: 24px;
    }

    .social-scroll-button i {
        font-size: 12px;
    }
}

/* Scroll buttons */
.social-scroll-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: #32384f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #8a8f98;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.social-scroll-button:hover {
    background: #3a4158;
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.social-scroll-left {
    left: 0;
}

.social-scroll-right {
    right: 0;
}

.social-scroll-button i {
    font-size: 16px;
}

.social-grid {
    padding: 0 3rem;
}

@media (max-width: 768px) {
    .social-scroll-button {
        display: none;
    }

    .social-grid {
        padding: 0 0.5rem;
    }
}

.popular-videos-section {
    padding: 2rem 0;
    position: relative;
    margin: 0 auto;
}

.videos-slider {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    gap: 1rem;
    padding: 1rem 0;
}

.video-slide {
    flex: 0 0 calc(33.333% - 0.67rem); /* 3 video yan yana */
    min-width: calc(33.333% - 0.67rem);
}

.video-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
}

.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    text-align: left;
}

.video-title {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.3;
    font-weight: 600;
}

.video-subtitle {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.25rem;
}

/* Slider kontrolleri */
.video-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.video-slider-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
}

.video-slider-arrow.prev {
    left: -16px;
}

.video-slider-arrow.next {
    right: -16px;
}

@media (max-width: 1024px) {
    .video-slide {
        flex: 0 0 calc(50% - 0.5rem); /* 2 video yan yana */
        min-width: calc(50% - 0.5rem);
    }
}

@media (max-width: 768px) {
    .video-slide {
        flex: 0 0 100%; /* 1 video */
        min-width: 100%;
    }

    .video-slider-arrow {
        width: 28px;
        height: 28px;
    }
}


/* Çekiliş Sayfası Stilleri */
.lottery-page {
    padding: 2rem;
    max-width: 1800px;
    margin: 0 auto;
}

.lottery-section {
    margin-bottom: 3rem;
}

.section-header {
    margin-bottom: 2rem;
}

.section-header h2 {
    color: #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-header h2 i {
    color: var(--primary-color);
}

.lottery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.lottery-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lottery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.lottery-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.lottery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.participation-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(76, 175, 80, 0.9);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ended-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(244, 67, 54, 0.9);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.lottery-content {
    padding: 1.5rem;
}

.lottery-content h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.lottery-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.lottery-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.detail-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.detail-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.lottery-timer {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
}

.timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.timer-item span {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
}

.timer-item label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.lottery-join-btn,
.lottery-winners-btn {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lottery-join-btn {
    background: var(--primary-color);
    color: #000000;
}

.lottery-join-btn:hover {
    background: linear-gradient(45deg, #45a049, #4CAF50);
    transform: translateY(-2px);
}

.lottery-joined-btn {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    cursor: not-allowed;
}

.lottery-winners-btn {
    background: linear-gradient(45deg, #FF9800, #F57C00);
    color: #fff;
}

.lottery-winners-btn:hover {
    background: linear-gradient(45deg, #F57C00, #FF9800);
    transform: translateY(-2px);
}

.winners-list {
    max-height: 300px;
    overflow-y: auto;
    padding: 1rem;
}

.winner-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.winner-number {
    background: var(--primary-color);
    color: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
}

.winner-name {
    color: #fff;
    font-size: 1rem;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .lottery-page {
        padding: 1rem;
    }

    .lottery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1rem;
    }

    .lottery-image {
        height: 180px;
    }

    .lottery-content {
        padding: 1rem;
    }

    .lottery-content h3 {
        font-size: 1.2rem;
    }

    .lottery-description {
        font-size: 0.9rem;
    }

    .timer-item span {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .lottery-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Styles */
footer {
    background-color: var(--header-color);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
    padding: 1rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex: 1;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.footer-logo img {
    height: 50px;
}

.copyright {
    text-align: center;
    flex: 1;
    font-size: 0.75rem; /* Telif yazısını küçülttük */
    opacity: 0.7;
}

.footer-icon {
    color: var(--text-color);
    opacity: 0.7;
    transition: all 0.3s ease;
}


.footer-icon:hover {
    transform: scale(1.1);
    color: var(--primary-color);
    opacity: 1;
}

.powered-by {
    color: var(--text-color);
    opacity: 0.7;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.powered-by strong {
    color: #FE9426;
    opacity: 1;
}

/* Kaydet Butonu Stilleri */
.save-btn {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    display: inline-block;
    text-align: center;
    position: relative;
    z-index: 1;
}

.save-btn:hover {
    background: var(--gradient-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 132, 0.3);
}

.user-status .username {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.user-status .email {
    font-size: 0.9rem;
    color: var(--primary-color);
    opacity: 0.8;
}

.table-responsive {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
}

/* Video Slider Styles */
.popular-videos-section {
    padding: 2rem 0;
    text-align: center;
    position: relative;
}

.section-title:not(.popular-videos-section) {
    text-align: center;
    margin-bottom: 0.5rem;
}

.popular-videos-section .section-title {
    text-align: start;
}

.popular-videos-section .section-title{
    display: block;
}

.section-subtitle {
    color: #8a8f98;
    margin-bottom: 2rem;
    font-size: 1rem;
    text-align: center;
}

.videos-slider {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
}

.video-slide {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: calc(33.333% - 1rem);
}

.video-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.video-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.video-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    text-align: left;
}

.video-title {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
    transition: all 0.3s ease;
}

/* Slider kontrolleri */
.video-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: #32384f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #8a8f98;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.video-slider-arrow:hover {
    background: #3a4158;
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.video-slider-arrow.prev {
    left: 0;
    /* Video kartlarının başlangıcına hizala */
    margin-left: -40px;
}

.video-slider-arrow.next {
    right: 0;
    /* Video kartlarının sonuna hizala */
    margin-right: -40px;
}

@media (max-width: 1024px) {
    .video-slide {
        flex: 0 0 calc(50% - 0.75rem);
        min-width: calc(50% - 0.75rem);
    }
}

@media (max-width: 768px) {
    .videos-slider {
        padding: 0 0.5rem;
        gap: 1rem;
    }

    .video-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .video-slider-arrow {
        display: none; /* Mobilde okları gizle */
    }

    .video-title {
        font-size: 0.9rem;
    }

    .video-overlay {
        padding: 1rem;
    }
}

/* Tablet ve küçük masaüstü için düzenleme */
@media (min-width: 769px) and (max-width: 1200px) {
    .video-slider-arrow.prev {
        margin-left: -20px;
    }
    
    .video-slider-arrow.next {
        margin-right: -20px;
    }
}

/* Video Slider Styles with Swiper */
.videoSwiper {
    width: 100%;
    padding: 20px 0;
}

.swiper-slide {
    height: auto;
}

/* Swiper Navigation Buttons */
.videoSwiper .swiper-button-prev,
.videoSwiper .swiper-button-next {
    color: #8a8f98;
    background: #32384f;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.videoSwiper .swiper-button-prev:after,
.videoSwiper .swiper-button-next:after {
    font-size: 16px;
    font-weight: bold;
}

.videoSwiper .swiper-button-prev:hover,
.videoSwiper .swiper-button-next:hover {
    background: #3a4158;
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .videoSwiper {
        padding: 20px 0;
    }
    
    .videoSwiper .swiper-button-prev,
    .videoSwiper .swiper-button-next {
        display: none;
    }
}

/* Social Swiper Styles */
.socialSwiper {
    width: 100%;
    padding: 20px 0;
}

.socialSwiper .swiper-slide {
    height: auto;
}

/* Swiper Navigation Buttons */
.socialSwiper .swiper-button-prev,
.socialSwiper .swiper-button-next {
    color: #8a8f98;
    background: #32384f;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.socialSwiper .swiper-button-prev:after,
.socialSwiper .swiper-button-next:after {
    font-size: 16px;
    font-weight: bold;
}

.socialSwiper .swiper-button-prev:hover,
.socialSwiper .swiper-button-next:hover {
    background: #3a4158;
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .socialSwiper {
        padding: 20px 0;
    }
    
    .socialSwiper .swiper-button-prev,
    .socialSwiper .swiper-button-next {
        display: none;
    }
}

/* Mevcut sosyal medya kartı stilleri korundu */
.social-item {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.social-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Başlık Stilleri */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.section-title-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.section-title i {
    font-size: 1.25rem;
    color: #8a8f98;
}

.section-subtitle {
    color: #8a8f98;
    font-size: 0.9rem;
    margin: 0;
    text-align: left;
}

/* Responsive */
@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .section-title-container {
        width: 100%;
    }

    .swiper-nav-buttons {
        align-self: flex-end;
    }
}

/* Navigation Buttons */
.swiper-nav-buttons {
    display: flex;
    gap: 8px;
}

.swiper-button-prev,
.swiper-button-next {
    position: static !important;
    margin: 0 !important;
    width: 32px !important;
    height: 32px !important;
    background: #32384f !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 14px !important;
    font-weight: bold;
    color: #8a8f98;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: #3a4158 !important;
    border-color: rgba(255, 255, 255, 0.2);
}

.swiper-button-prev:hover:after,
.swiper-button-next:hover:after {
    color: #fff;
}

/* Swiper Containers */

.popular-videos-section .section-header,
.social-section .section-header,
.bonus-section .section-header {
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .swiper-nav-buttons {
        align-self: flex-end;
    }
    
    .section-subtitle {
        text-align: left;
    }
}

/* Bonus Swiper Styles */
.bonusSwiper {
    width: 100%;
}

.bonus-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 16/9;
}

.bonus-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.bonus-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.bonus-card:hover img {
    transform: scale(1.05);
}

.bonus-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, 
        rgba(26, 32, 53, 0.95) 0%,
        rgba(26, 32, 53, 0.8) 50%,
        rgba(26, 32, 53, 0) 100%);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    opacity: 0;
}

.bonus-card:hover .bonus-content {
    transform: translateY(0);
    opacity: 1;
}

.bonus-content h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}

.bonus-content p {
    color: #8a8f98;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.2s;
}

.bonus-card:hover .bonus-content h3,
.bonus-card:hover .bonus-content p {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .bonus-content {
        padding: 1rem;
    }

    .bonus-content h3 {
        font-size: 1rem;
    }

    .bonus-content p {
        font-size: 0.8rem;
    }
}

/* Navigation Buttons */
.swiper-nav-buttons {
    display: flex;
    gap: 8px;
}

.swiper-button-prev,
.swiper-button-next {
    position: static !important;
    margin: 0 !important;
    width: 32px !important;
    height: 32px !important;
    background: #32384f !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 14px !important;
    font-weight: bold;
    color: #8a8f98;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: #3a4158 !important;
    border-color: rgba(255, 255, 255, 0.2);
}

.swiper-button-prev:hover:after,
.swiper-button-next:hover:after {
    color: #fff;
}

/* Responsive - Mobil için tüm navigasyon butonlarını gizle */
@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .section-title-container {
        width: 100%;
    }

    /* Tüm swiper navigasyon butonlarını gizle */
    .swiper-nav-buttons,
    .swiper-button-prev,
    .swiper-button-next {
        display: none !important;
    }

    /* Swiper container'ların padding'ini düzelt */
    .videoSwiper,
    .socialSwiper,
    .bonusSwiper {
        padding: 0 !important;
    }
}