:root {
    --sidebar-width: 250px;
    --collapsed-sidebar-width: 70px;

}

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

body {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    text-transform: capitalize;
    background-color: var(--dark-bg);
    color: var(--star-normal-text-color);
    overflow-x: hidden;
    visibility: hidden; /* Sayfa baÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸langÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±ÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§ta gizli */
}

a {
    text-decoration: none;
    color: inherit;
}

/* Bonus KartlarÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± Stiller */
.bonus-cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px auto;
    max-width: 1200px;
    flex-wrap: wrap;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.bonus-card {
    background-color: rgba(26, 26, 26, 0.85);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 580px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    animation: fadeInUp 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

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

.bonus-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    padding: 15px;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.bonus-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3));
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Animasyonlu Hediye Kutusu ve Roket İkonları */
.bonus-icon[data-type="gift"] {
    position: relative;
    overflow: visible;
}

.bonus-icon[data-type="gift"]::before {
    content: "🎁";
    font-size: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: giftBoxExplode 2s ease-in-out infinite;
    z-index: 2;
}

.bonus-icon[data-type="rocket"] {
    position: relative;
    overflow: visible;
}

.bonus-icon[data-type="rocket"]::before {
    content: "🚀";
    font-size: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rocketLaunch 1.5s ease-in-out infinite;
    z-index: 2;
}

/* Hediye kutusu patlama animasyonu */
@keyframes giftBoxExplode {
    0% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        filter: brightness(1);
    }
    15% {
        transform: translate(-50%, -50%) scale(1.1) rotate(-5deg);
        filter: brightness(1.2);
    }
    30% {
        transform: translate(-50%, -50%) scale(1.3) rotate(5deg);
        filter: brightness(1.5) saturate(1.3);
    }
    45% {
        transform: translate(-50%, -50%) scale(1.4) rotate(-3deg);
        filter: brightness(1.8) saturate(1.5);
    }
    60% {
        transform: translate(-50%, -50%) scale(1.2) rotate(2deg);
        filter: brightness(1.4) saturate(1.2);
    }
    75% {
        transform: translate(-50%, -50%) scale(1.1) rotate(-1deg);
        filter: brightness(1.2);
    }
    100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        filter: brightness(1);
    }
}

/* Roket fırlatma animasyonu */
@keyframes rocketLaunch {
    0% {
        transform: translate(-50%, -50%) translateY(0px) scale(1) rotate(0deg);
        filter: brightness(1);
    }
    25% {
        transform: translate(-50%, -50%) translateY(-8px) scale(1.1) rotate(-15deg);
        filter: brightness(1.3) saturate(1.2);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-15px) scale(1.2) rotate(0deg);
        filter: brightness(1.6) saturate(1.4);
    }
    75% {
        transform: translate(-50%, -50%) translateY(-8px) scale(1.1) rotate(15deg);
        filter: brightness(1.3) saturate(1.2);
    }
    100% {
        transform: translate(-50%, -50%) translateY(0px) scale(1) rotate(0deg);
        filter: brightness(1);
    }
}

/* Parıltı efektleri için hediye kutusu */
.bonus-icon[data-type="gift"]::after {
    content: "✨";
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 20px;
    animation: giftSparkle 1.5s ease-in-out infinite;
    z-index: 3;
}

/* Ateş efektleri için roket */
.bonus-icon[data-type="rocket"]::after {
    content: "🔥";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    animation: rocketFire 0.8s ease-in-out infinite alternate;
    z-index: 3;
}

/* Hediye parıltısı animasyonu */
@keyframes giftSparkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.8) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
    }
}

/* Roket ateş animasyonu */
@keyframes rocketFire {
    0% {
        opacity: 0.6;
        transform: translateX(-50%) scale(0.8);
        filter: hue-rotate(0deg);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1.2);
        filter: hue-rotate(30deg);
    }
}

/* Hover efektleri */
.bonus-card:hover .bonus-icon[data-type="gift"]::before {
    animation-duration: 1s;
    animation-timing-function: ease-out;
}

.bonus-card:hover .bonus-icon[data-type="rocket"]::before {
    animation-duration: 0.8s;
    animation-timing-function: ease-out;
}

.bonus-card:hover .bonus-icon[data-type="gift"]::after {
    animation-duration: 0.8s;
}

.bonus-card:hover .bonus-icon[data-type="rocket"]::after {
    animation-duration: 0.5s;
}

.bonus-content {
    flex: 1;
}

.bonus-content h3 {
    color: var(--star-normal-text-color);
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    position: relative;
    display: inline-block;
}

.bonus-content p {
    color: var(--star-onemsiz-text-color);
    margin-bottom: 15px;
    font-size: 15px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.bonus-btn {
    background-color: var(--star-button-background-color);
    color: var(--star-button-text-color);
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 2;
}

.bonus-btn:hover {
    background-color: var(--star-button-hover-background-color);
}

/* Mobil Uyumluluk iÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§in Bonus KartlarÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± */
@media (max-width: 768px) {
    .bonus-cards-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .bonus-card {
        max-width: 100%;
        padding: 25px;
    }
    
    .bonus-icon {
        width: 70px;
        height: 70px;
        margin-right: 20px;
        padding: 12px;
    }
    
    .bonus-content h3 {
        font-size: 22px;
    }
    
    .bonus-content p {
        font-size: 14px;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .bonus-card {
        padding: 20px;
    }
    
    .bonus-icon {
        width: 60px;
        height: 60px;
        margin-right: 15px;
        padding: 10px;
    }
    
    .bonus-icon img {
        width: 40px;
        height: 40px;
    }
    
    .bonus-content h3 {
        font-size: 20px;
    }
    
    .bonus-content p {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .bonus-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
}

.btn {
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Sidebar Stiller */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: linear-gradient(180deg, var(--star-navbar-bg) 0%, rgba(26, 26, 26, 0.95) 50%, var(--star-navbar-bg) 100%);
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: width, padding;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0 15px;
    overflow-y: hidden; /* MasaÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼stÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼nde scroll gizli */
}

.logo-container {
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
}



/* Sidebar Toggle Button */
.sidebar-toggle-btn {
    position: absolute;
    right: 0px;
    top: 55px;
    background: var(--star-button-background-color);
    border: none;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, box-shadow;
    cursor: pointer;
    font-size: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    border: 2px solid var(--star-button-background-color);
}

.sidebar-toggle-btn:hover {
    background: var(--star-button-hover-background-color);
    transform: scale(1.1);
    box-shadow: 0 3px 10px rgba(255, 140, 0, 0.4);
}

/* Küçülmüş Sidebar */
.sidebar.collapsed {
    width: 70px;
    padding: 0 10px;
    overflow: visible;
}

.sidebar.collapsed .logo-container {
    padding: 10px 0;
}

.sidebar.collapsed .logo {
    max-width: 40px;
}

.sidebar.collapsed .sidebar-toggle-btn {
    position: fixed;
    left: 58px;
    right: auto;
    width: 24px;
    height: 24px;
    top: 55px;
}

.sidebar.collapsed .sidebar-toggle-btn i {
    transform: rotate(180deg);
    font-size: 9px;
}

/* Toggle buton pulse animasyonu */
@keyframes togglePulse {
    0%, 100% {
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 4px 12px rgba(255, 140, 0, 0.6);
    }
}

.sidebar-toggle-btn:not(:hover) {
    animation: togglePulse 4s ease-in-out infinite;
}

.sidebar.collapsed .sidebar-menu li a {
    justify-content: center;
    padding: 12px 8px;
}

.sidebar.collapsed .sidebar-menu li a .menu-text {
    display: none;
}

.sidebar.collapsed .sidebar-menu li a i {
    margin-right: 0;
    font-size: 18px;
}

/* Modern Tooltip Stilleri - Sadece Masaüstü */
@media (min-width: 769px) {
    .sidebar.collapsed .sidebar-menu li a {
        position: relative;
        overflow: visible;
    }
    
    .sidebar.collapsed .sidebar-menu li a::after {
        content: attr(data-tooltip);
        position: absolute;
        left: calc(100% + 15px);
        top: 50%;
        transform: translateY(-50%) scale(0.8);
        background: linear-gradient(135deg, var(--star-modal-background-color) 0%, rgba(0, 0, 0, 0.95) 100%);
        color: var(--star-button-text-color);
        padding: 12px 16px;
        border-radius: 12px;
        font-size: 14px;
        font-weight: 600;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 9999;
        border: 1px solid var(--star-border-color);
        box-shadow: 
            0 20px 40px rgba(0, 0, 0, 0.6),
            0 0 0 1px rgba(255, 255, 255, 0.05),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        pointer-events: none;
        backdrop-filter: blur(10px);
        letter-spacing: 0.5px;
        min-width: 120px;
        text-align: center;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    }
    
    .sidebar.collapsed .sidebar-menu li a::before {
        content: '';
        position: absolute;
        left: calc(100% + 7px);
        top: 50%;
        transform: translateY(-50%) scale(0.8);
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 8px 8px 8px 0;
        border-color: transparent var(--star-modal-background-color) transparent transparent;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 9998;
        filter: drop-shadow(2px 0 4px rgba(0, 0, 0, 0.3));
    }
    
    .sidebar.collapsed .sidebar-menu li a:hover::after {
        opacity: 1;
        visibility: visible;
        transform: translateY(-50%) scale(1);
        transition-delay: 0.1s;
    }
    
    .sidebar.collapsed .sidebar-menu li a:hover::before {
        opacity: 1;
        visibility: visible;
        transform: translateY(-50%) scale(1);
        transition-delay: 0.1s;
    }
    
    /* Tooltip hover efekti için pulse animasyonu */
    @keyframes tooltip-pulse {
        0%, 100% {
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(255, 255, 255, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }
        50% {
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.7),
                0 0 0 1px rgba(255, 255, 255, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.15),
                0 0 20px rgba(255, 165, 0, 0.2);
        }
    }
    
    .sidebar.collapsed .sidebar-menu li a:hover::after {
        animation: tooltip-pulse 2s ease-in-out infinite;
    }
}

.sidebar.collapsed .social-icons {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    gap: 8px;
    margin: 10px 5px;
    padding: 5px 0;
}

.sidebar.collapsed .social-icon-sidebar {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    font-size: 0;
    flex-direction: column;
    gap: 0;
    justify-content: center;
    align-items: center;
    padding: 8px;
    position: relative;
}

.sidebar.collapsed .social-icon-sidebar i {
    font-size: 18px;
    margin-right: 0;
}

.sidebar.collapsed .social-icon-sidebar span {
    display: none;
}

.sidebar.collapsed .footer-credit {
    display: none;
}

.logo {
    max-width: 120px;
    height: auto;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    margin-bottom: 8px;
}

.sidebar-menu li a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: var(--star-button-text-color);
    transition: background-color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: background-color, color, padding;
    font-size: 14px;
    background-color: var(--star-bonus-card-background-color);
    margin: 0;
    border-radius: 10px;
    border: none;
}

.sidebar-menu li a:hover, .sidebar-menu li a.active {
    background-color: var(--star-sidebar-button-background-color);
    color: var(--star-button-text-color);
}

.sidebar-menu li a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    font-size: 16px;
    color: var(--star-button-background-color);
}

.sidebar-menu li a.active {
    background-color: var(--star-sidebar-button-background-color);
    color: var(--star-button-text-color);
    border-left: 3px solid var(--star-button-background-color);
}

.sidebar-menu li a.active i {
    color: #ffd700;
}

/* Mobil Uyumluluk iÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§in Sidebar Active SÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±nÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±fÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± */
@media (max-width: 768px) {
.sidebar-menu li a.active {
    background-color: var(--star-sidebar-button-background-color);
    color: var(--star-normal-text-color);
    border-left: 3px solid var(--star-button-background-color);
    padding-left: 17px;
}
}

.sidebar-footer {
    margin-top: auto;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 0 15px 15px;
}

.contact-info {
    font-size: 12px;
    color: var(--star-button-text-color);
    margin-bottom: 15px;
    text-align: center;
}

.social-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 0 10px;
    padding: 5px 0;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    color: var(--star-normal-text-color);
    padding: 10px 5px;
    border-radius: 10px;
    transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, box-shadow;
    text-align: center;
    height: 40px;
    flex-direction: column;
    gap: 3px;
}

.social-icon:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
}

.social-icon i {
    margin-right: 0;
    font-size: 16px;
}

.discord {
    background: linear-gradient(135deg, #7289DA, #5865F2);
    color: white;
    box-shadow: 0 0 20px rgba(114, 137, 218, 0.6);
}

.telegram {
    background: linear-gradient(135deg, #0088cc, #229ED9);
    color: white;
    box-shadow: 0 0 20px rgba(34, 158, 217, 0.6);
}

.kick {
    background: linear-gradient(135deg, #5AFF3D, #4de82b);
    color: black;
    box-shadow: 0 0 20px rgba(90, 255, 61, 0.6);
}

.twitch {
    background: linear-gradient(135deg, #9146FF, #772ce8);
    color: white;
    box-shadow: 0 0 20px rgba(145, 70, 255, 0.6);
}

.instagram {
    background: linear-gradient(135deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
    box-shadow: 0 0 20px rgba(225, 48, 108, 0.6);
}

.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
}

.site-url {
    font-size: 11px;
    color: var(--star-button-text-color);
    margin-top: 15px;
    text-align: center;
}

/* Ana ÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§erik Stiller */
.main-content {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    padding-bottom: 50px;
    transition: margin-left 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: margin-left;
}

.main-content.sidebar-collapsed {
    margin-left: 70px;
}

/* Header Stiller */
.main-header {
    padding: 15px 30px;
    background: linear-gradient(90deg, var(--star-navbar-bg) 0%, rgba(26, 26, 26, 0.90) 50%, var(--star-navbar-bg) 100%);
    transition: padding 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: padding;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.market-logo {
    display: flex;
    align-items: center;
    background-color: var(--star-bonus-card-background-color);
    padding: 8px 15px;
    border-radius: 30px;
    box-shadow: 0 0 10px var(--star-button-background-color);
}
.coin-logo {
    width: 30px;
    height: 30px;
    margin-right: 12px;
    animation: coinRotate 3s linear infinite;
    transform-style: preserve-3d;
    perspective: 1000px;
    filter: drop-shadow(0 0 5px rgba(255, 140, 0, 0.5));
}

@keyframes coinRotate {
    0% {
        transform: rotateY(0deg) scale(1);
        filter: drop-shadow(0 0 5px rgba(255, 140, 0, 0.5));
    }
    50% {
        transform: rotateY(180deg) scale(1.05);
        filter: drop-shadow(0 0 8px rgba(255, 140, 0, 0.7));
    }
    100% {
        transform: rotateY(360deg) scale(1);
        filter: drop-shadow(0 0 5px rgba(255, 140, 0, 0.5));
    }
}



.user-actions {
    display: flex;
    gap: 10px;
}

.login-btn {
    background: linear-gradient(135deg, rgba(51, 51, 51, 0.8), rgba(68, 68, 68, 0.9));
    color: white;
    border-radius: 30px;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: linear-gradient(135deg, rgba(68, 68, 68, 0.9), rgba(85, 85, 85, 1));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.login-btn:hover::before {
    left: 100%;
}

.register-btn {
    background: linear-gradient(135deg, var(--star-button-background-color), var(--star-button-hover-background-color));
    color: white;
    border-radius: 30px;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    border: 1px solid rgba(255, 140, 0, 0.3);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.register-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s ease-in-out infinite;
    z-index: -1;
}

.register-btn:hover {
    background: linear-gradient(135deg, #ff8c00, #ffa500, #ffb347);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 165, 0, 0.6);
}

/* Mobil MenÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼ Toggle */
.menu-toggle {
    display: none;
    width: 30px;
    height: 30px;
    background-color: transparent;
    color: white;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 100;
}

/* Mobil Navbar */
.mobile-navbar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.95);
    z-index: 1001;
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mobile-navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.mobile-left {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 6px 12px;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.3);
    width: auto;
    max-width: 80%;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 140, 0, 0.2);
}

.menu-toggle {
    display: none;
    width: 35px;
    height: 35px;
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--star-button-background-color);
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 100;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 140, 0, 0.2);
}

.menu-toggle:hover {
    background-color: rgba(255, 140, 0, 0.1);
    transform: scale(1.05);
}

.menu-toggle i {
    font-size: 18px;
    color: var(--star-button-background-color);
    transition: all 0.3s ease;
}

.menu-toggle:hover i {
    color: var(--star-button-hover-background-color);
}

.mobile-logo {
    max-width: 30px;
    height: 30px;
    animation: coinRotate 3s linear infinite;
    transform-style: preserve-3d;
    perspective: 1000px;
    filter: drop-shadow(0 0 5px rgba(255, 140, 0, 0.7));
}

.mobile-left .market-text {
    font-weight: 700;
    font-size: 14px;
    color: var(--star-button-background-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 0 5px rgba(255, 140, 0, 0.5);
}

.logo-container-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container-mobile .logo {
    max-height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.mobile-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.mobile-login-btn {
    background: linear-gradient(135deg, rgba(51, 51, 51, 0.8), rgba(68, 68, 68, 0.9));
    color: white;
    border-radius: 30px;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 40px;
    height: 36px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.mobile-login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: all 0.3s ease;
}

.mobile-login-btn:hover {
    background: linear-gradient(135deg, rgba(68, 68, 68, 0.9), rgba(85, 85, 85, 1));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.mobile-login-btn:hover::before {
    left: 100%;
}

.mobile-register-btn {
    background: linear-gradient(135deg, var(--star-button-background-color), var(--star-button-hover-background-color));
    color: white;
    border-radius: 30px;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 40px;
    height: 36px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 140, 0, 0.3);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.mobile-register-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.mobile-register-btn:hover {
    background: linear-gradient(135deg, #ff8c00, #ffa500, #ffb347);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 165, 0, 0.6);
}

.mobile-register-btn:hover::before {
    animation: shine 1.5s ease-in-out;
    opacity: 1;
}

@keyframes shine {
    0% {
        left: -100%;
        opacity: 0;
    }
    20% {
        opacity: 0.5;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

.profile-avatar-container-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.profile-avatar-container-mobile img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--star-button-background-color);
    transition: all 0.3s ease;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.4);
}

.profile-avatar-container-mobile i {
    font-size: 35px;
    color: var(--star-button-background-color);
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(255, 140, 0, 0.4));
}

.profile-avatar-container-mobile:hover img {
    transform: scale(1.05);
    border-color: var(--star-button-hover-background-color);
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.6);
}

.profile-avatar-container-mobile:hover i {
    color: var(--star-button-hover-background-color);
    transform: scale(1.05);
    filter: drop-shadow(0 0 8px rgba(255, 102, 0, 0.6));
}

.user-info-mobile .dropdown-menu {
    background-color: var(--star-card-background-color);
    border: 1px solid var(--star-border-color);
    box-shadow: 0 5px 15px var(--star-box-shadow-color);
    border-radius: 10px;
    padding: 15px;
    min-width: 250px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.user-info-mobile .dropdown-item {
    color: var(--star-normal-text-color);
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.user-info-mobile .dropdown-item:hover {
    background-color: rgba(255, 140, 0, 0.15);
    transform: translateX(3px);
}

.user-info-mobile .dropdown-item-user {
    padding: 0;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-info-mobile .dropdown-item-user .user-profile-pic {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--star-button-background-color);
    box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.3);
}

.user-info-mobile .dropdown-item-user .user-profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info-mobile .dropdown-item-user .user-profile-pic i {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 140, 0, 0.1);
    color: var(--star-button-background-color);
}

.user-info-mobile .dropdown-item-user .user-info-text {
    display: flex;
    flex-direction: column;
}

.user-info-mobile .username {
    font-weight: 600;
    font-size: 15px;
    color: white;
    display: block;
    text-align: left;
    margin-bottom: 2px;
}

.user-info-mobile .user-status {
    font-size: 12px;
    color: var(--star-onemsiz-text-color);
}

.user-info-mobile .dropdown-item-coins {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(255, 140, 0, 0.05);
    border-radius: 8px;
    margin-bottom: 12px;
}

.user-info-mobile .coin-balance {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--star-button-background-color);
    font-weight: 600;
    font-size: 16px;
}

.user-info-mobile .coin-icon {
    filter: drop-shadow(0 0 3px rgba(255, 140, 0, 0.5));
}

.user-info-mobile .dropdown-divider {
    margin: 8px 0;
    border-color: rgba(255, 255, 255, 0.08);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobil uyumluluk DÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼zenlemeleri */
@media (max-width: 768px) {
    .mobile-navbar {
        display: block;
    }
    
    .menu-toggle {
        display: flex;
        width: 35px;
        height: 35px;
        background-color: rgba(255, 140, 0, 0.1);
        border: 1px solid rgba(255, 140, 0, 0.3);
        box-shadow: 0 0 10px rgba(255, 140, 0, 0.2);
    }
    
    .mobile-left {
        justify-content: flex-start;
        background-color: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
        gap: 15px;
        max-width: none;
        width: auto;
    }
    
    .mobile-market-link {
        display: none;
        align-items: center;
        gap: 8px;
        background-color: rgba(0, 0, 0, 0.3);
        padding: 6px 12px;
        border-radius: 20px;
        box-shadow: 0 0 15px rgba(255, 140, 0, 0.3);
        border: 1px solid rgba(255, 140, 0, 0.2);
        transition: all 0.3s ease;
    }
    
    .mobile-market-link:hover {
        background-color: rgba(0, 0, 0, 0.4);
        transform: translateY(-2px);
    }
    
    .mobile-logo, .mobile-left .market-text {
        display: block;
    }
}

@media (max-width: 576px) {
    .mobile-actions .mobile-login-btn span,
    .mobile-actions .mobile-register-btn span {
        display: none;
    }
    
    .mobile-login-btn, .mobile-register-btn {
        width: 36px;
        padding: 7px;
    }
    
    .profile-avatar-container-mobile img {
        width: 32px;
        height: 32px;
    }
    
    .profile-avatar-container-mobile i {
        font-size: 32px;
    }
    
    .user-info-mobile .dropdown-menu {
        min-width: 200px;
        right: -10px;
    }
    
    .mobile-left {
        gap: 10px;
    }
    
    .menu-toggle {
        width: 32px;
        height: 32px;
    }
    
    .menu-toggle i {
        font-size: 16px;
    }
    
    .mobile-market-link {
        padding: 5px 10px;
    }
    
    .mobile-logo {
        max-width: 25px;
        height: 25px;
    }
    
    .mobile-left .market-text {
        font-size: 12px;
    }
    
    .logo-container-mobile .logo {
        max-height: 35px;
    }
}

@media (max-width: 400px) {
    .profile-avatar-container-mobile img {
        width: 28px;
        height: 28px;
    }
    
    .profile-avatar-container-mobile i {
        font-size: 28px;
    }
    
    .mobile-left {
        gap: 8px;
    }
    
    .menu-toggle {
        width: 30px;
        height: 30px;
    }
    
    .menu-toggle i {
        font-size: 14px;
    }
    
    .mobile-market-link {
        padding: 4px 8px;
    }
    
    .mobile-logo {
        max-width: 22px;
        height: 22px;
    }
    
    .mobile-left .market-text {
        font-size: 11px;
        max-width: 80px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .logo-container-mobile .logo {
        max-height: 30px;
    }
}

/* Banner Stiller */
.banner-section {
    position: relative;
    overflow: hidden;
    background: url('../img/banner-bg.jpg') no-repeat center center;
    background-size: cover;
    max-width: 80%;
    margin: 0 auto;
    border-radius: 15px;
}

.banner-container {
    position: relative;
    height: 400px;
    display: flex;
}

.banner-slide {
    position: relative;
    width: 100%;
    height: 100%;
    opacity: 1;
    display: flex;
    max-width: 80%;
    margin: 0 auto;
}

.banner-slide.active {
    opacity: 1;
    display: flex;
}

.banner-content {
    display: flex;
    height: 100%;
    width: 100%;
    padding: 0 50px;
}

.banner-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 20px;
    color: #fff;
}

.banner-text h2 {
    font-size: 28px;
    margin-bottom: 0;
    font-weight: 600;
}

.banner-highlight {
    font-size: 120px;
    font-weight: 800;
    color: var(--star-button-background-color);
    line-height: 1;
    margin: 10px 0;
}

.banner-text h3 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 600;
}

.banner-btn {
    background-color: var(--star-button-background-color);
    color: white;
    width: fit-content;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.banner-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 2s linear infinite;
    z-index: -1;
}

.banner-btn:hover {
    background-color: var(--star-button-hover-background-color);
}

.banner-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.banner-image img {
    max-width: 1035px;
    height: 350px;
    object-fit: fill;
    border-radius: 10px;
}

/* Features Stiller */
.features-section {
    padding: 20px 30px;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.feature-card {
    background-color: #222;
    border-radius: 15px;
    padding: 15px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(255, 140, 0, 0.3), transparent 30%);
    animation: rotate 4s linear infinite;
    z-index: -1;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: #222;
    border-radius: 13px;
    z-index: -1;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

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

.feature-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    filter: brightness(1.2);
    z-index: -1;
}

.user-icon {
    background: linear-gradient(135deg, #ff8c00, #ff6600);
    color: white;
}

.daily-icon {
    background: linear-gradient(135deg, #ff5722, #ff3d00);
    color: white;
}

.sponsor-icon {
    background: linear-gradient(135deg, #ffc107, #ffab00);
    color: black;
}

.live-icon {
    background: linear-gradient(135deg, #f44336, #d32f2f);
    color: white;
}

.feature-text h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #fff;
}

.feature-text p {
    font-size: 14px;
    color: var(--star-button-background-color);
    font-weight: 600;
}

/* Social Media Stiller */
.social-section {
    padding: 20px 0;
    max-width: 80%;
    margin: 0 auto;
}

.page-header, .section-title, .kura-header {
    position: relative;
    margin: 15px auto 35px auto;
    text-align: center;
    padding: 20px 25px;
    background: linear-gradient(135deg, var(--star-navbar-bg) 0%, rgba(26, 26, 26, 0.95) 50%, var(--star-card-background-color) 100%);
    border-radius: 12px;
    box-shadow: 
        0 8px 32px var(--star-box-shadow-color),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 20px rgba(255, 140, 0, 0.15);
    overflow: hidden;
    border: 1px solid var(--star-border-color);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--star-normal-text-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 
        0 0 10px rgba(255, 140, 0, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.8);
    z-index: 2;
    width: 100%;
    max-width: 800px;
    display: block;
    transition: all 0.3s ease;
}

.page-header:hover, .section-title:hover, .kura-header:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 40px var(--star-box-shadow-color),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 30px var(--star-button-background-color);
}

.page-header::before, .section-title::before, .kura-header::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--star-button-background-color) 0%, transparent 60%);
    border-radius: 50%;
    animation: pulse-glow 6s infinite alternate;
    z-index: -1;
}

.page-header::after, .section-title::after, .kura-header::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--star-button-background-color) 0%, transparent 60%);
    border-radius: 50%;
    animation: pulse-glow 6s infinite alternate-reverse;
    z-index: -1;
}

.page-header h1, .page-header h2, .section-title h1, .section-title h2, .kura-header h1, .kura-header h2 {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    text-shadow: inherit;
}

.page-header p, .section-title p, .kura-header p {
    margin: 8px 0 0 0;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--star-onemsiz-text-color);
    text-transform: none;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
    .page-header, .section-title, .kura-header {
        font-size: 1.4rem;
        padding: 15px 20px;
        letter-spacing: 1px;
        margin: 10px auto 25px auto;
    }
    
    .page-header p, .section-title p, .kura-header p {
        font-size: 0.75rem;
        margin-top: 5px;
    }
}

@media (max-width: 480px) {
    .page-header, .section-title, .kura-header {
        font-size: 1.2rem;
        padding: 12px 15px;
        letter-spacing: 0.5px;
    }
}



.social-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.social-card {
    background-color: #222;
    border-radius: 15px;
    padding: 20px 4px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(255, 255, 255, 0.2), transparent 30%);
    animation: rotate 4s linear infinite;
    z-index: -1;
}

.social-card::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--star-bonus-card-background-color);
    border-radius: 13px;
    z-index: -1;
}

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

.starpanel-container {
    width: 85%;
    margin: 20px auto;
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.social-icon-sidebar {
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin: 0 auto 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
}

.social-icon-sidebar:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.social-icon-sidebar i {
    font-size: 22px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.social-icon-sidebar span {
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-icon-sidebar:hover i {
    transform: scale(1.2);
}

.social-icon-sidebar:hover span {
    font-weight: 600;
}

.social-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    filter: brightness(1.2);
    z-index: -1;
}

.telegram-icon {
    background: linear-gradient(135deg, #0088cc, #229ED9);
    color: white;
    box-shadow: 0 0 25px rgba(34, 158, 217, 0.7);
}

.twitter-icon {
    background: linear-gradient(135deg, #000000, #333333);
    color: white;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.7);
}

.instagram-icon {
    background: linear-gradient(135deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
    box-shadow: 0 0 25px rgba(225, 48, 108, 0.7);
}

.youtube-icon {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.7);
}

.kick-icon {
    background: linear-gradient(135deg, #5AFF3D, #4de82b);
    color: black;
    box-shadow: 0 0 25px rgba(90, 255, 61, 0.7);
}

.social-card h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--star-normal-text-color);
    font-weight: bold;
    text-align: center;
}

.social-card p {
    font-size: 13px;
    color: var(--star-onemsiz-text-color);
    margin-bottom: 5px;
    font-weight: bold;
    text-align: center;
}

.social-card h4 {
    font-size: 15px;
    color: var(--star-onemli-text-color);
    margin-bottom: 15px;
    font-weight: bold;
    text-align: center;
}

.social-btn {
    background-color: var(--star-button-background-color);
    color: var(--star-button-text-color);
    padding: 8px 15px;
    font-size: 14px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.social-btn:hover {
    background-color: var(--star-button-hover-background-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.social-btn.claimed {
    background-color: #28a745;
    cursor: default;
}

.social-btn.claimed:hover {
    background-color: #28a745;
    transform: none;
    box-shadow: none;
}

.social-btn i {
    margin-right: 5px;
}

/* Responsive TasarÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ'Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±m */
@media (max-width: 1200px) {
    .social-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .starpanel-container,
    .banner-slide,
    .bonus-cards-container,
    .top-features,
    .social-section {
        width: 90%;
        max-width: 90%;
    }
    
    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .banner-content {
        flex-direction: column;
    }
    
    .banner-text, .banner-image {
        text-align: center;
    }
    
    .banner-text {
        padding-right: 0;
    }
    
    .banner-btn {
        margin: 0 auto;
    }
    
    .banner-container {
        height: 500px;
    }
    
    .sponsor-logo {
        width: 120px;
        height: 50px;
    }
    
    .sponsor-title {
        font-size: 16px;
    }
    
    .sponsor-subtitle {
        font-size: 13px;
    }
    
    .bonus-amount {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    :root {
        --sidebar-width: 0px;
    }
    
    body {
        padding-top: 50px;
    }
    
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        width: 100%;
        top: 50px;
        height: calc(100vh - 50px);
        overflow-y: auto; /* Mobilde scroll aktif */
        z-index: 999;
        padding-bottom: 30px; /* Alt kÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼stÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼nde ekstra boÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼k Puan kartÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± iÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§in arka plan */
    }
    
    .sidebar-menu {
        padding-bottom: 20px; /* MenÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼ altÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±nda ekstra boÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼nde ekstra boÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼k Puan kartÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± iÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§in arka plan */
    }
    
    .sidebar-footer {
        margin-top: 20px; /* Footer ÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼stÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼nde ekstra boÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼k Puan kartÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± iÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§in arka plan */
        padding-bottom: 50px; /* Footer altÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±nda ekstra boÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼k Puan kartÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± iÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§in arka plan */
    }
    
    .sidebar.active {
        transform: translateX(0);
    }

    /* Mobil cihazlarda toggle butonunu gizle */
    .sidebar-toggle-btn {
        display: none;
    }
    
    .banner-image img {
        height: 100%;
        width: 100%;
        margin-top: 0px;
        border-radius: 15px;
        object-fit: contain;
    }
    
    .main-content {
        margin-left: 0;
        padding: 0;
    }
    
    .social-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .banner-container {
        height: 300px;
    }
    
    .banner-highlight {
        font-size: 60px;
    }
    
    .banner-text h2 {
        font-size: 18px;
    }
    
    .banner-text h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .banner-btn {
        padding: 8px 20px;
        font-size: 14px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .mobile-navbar {
        display: block;
    }
    .logo-container-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .main-header {
        display: none;
    }
    
    .mobile-login-btn {
        background-color: #333;
        border-radius: 30px;
        padding: 6px 15px;
    }
    
    .mobile-register-btn {
        background-color: var(--star-button-background-color);
        border-radius: 30px;
        padding: 6px 15px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-left {
        align-items: center;
    }
    
    .footer-right {
        flex-direction: column;
        gap: 10px;
    }
    
    .mobile-features {
        display: block;
        padding: 15px;
    }
    
    .starpanel-container {
        justify-self: anchor-center;
        width: 100%;
    }
    
    .top-features {
        display: none;
    }
    
    .banner-section {
        margin: 0;
        border-radius: 0;
    }
    
    .social-section {
        padding: 20px 15px;
    }
    
    .mobile-left {
        justify-content: center;
        background-color: transparent;
        box-shadow: none;
        padding: 0;
        max-width: 40px;
    }
    
    .mobile-logo, .mobile-left .market-text {
        display: none;
    }
    
    .sponsor-search {
        max-width: 100%;
    }
    
    .sponsor-card {
        padding: 20px 15px;
    }
    
    .sponsor-logo {
        width: 100px;
        height: 45px;
        margin-bottom: 15px;
    }
    
    .sponsor-title {
        font-size: 15px;
    }
    
    .sponsor-subtitle {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .bonus-amount {
        font-size: 18px;
    }
    
    .bonus-text {
        font-size: 12px;
    }
    
    .sponsor-info-tag {
        padding: 5px 12px;
        font-size: 11px;
    }
    
    .section-title {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .starpanel-container,
    .banner-slide,
    .bonus-cards-container,
    .top-features,
    .social-section,
    .mobile-features,
    .banner-section {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .bonus-cards-container {
        flex-direction: column;
    }
    
    .social-container {
        grid-template-columns: 1fr;
    }
    
    .banner-image img {
        border-radius: 5px;
    }
    
    .top-features {
        grid-template-columns: 1fr;
    }
    
    .banner-container {
        height: 550px;
    }
    
    .banner-highlight {
        font-size: 60px;
    }
    
    .banner-content {
        padding: 0 20px;
    }
    
    .mobile-actions .mobile-login-btn span {
        display: none;
    }
    
    .mobile-actions .mobile-register-btn span {
        display: none;
    }
    
    .sponsor-container .row {
        margin: 0 -5px;
    }
    
    .sponsor-container .col-sm-6 {
        padding: 0 5px;
    }
    
    .sponsor-card {
        padding: 15px 10px;
        margin-bottom: 10px;
    }
    
    .sponsor-logo {
        width: 90px;
        height: 40px;
        margin-bottom: 10px;
    }
    
    .sponsor-badge {
        width: 25px;
        height: 25px;
        top: 10px;
        right: 10px;
        visibility: hidden;
    }
    
    .sponsor-badge i {
        font-size: 12px;
    }
    
    .sponsor-info {
        gap: 5px;
    }
    
    .sponsor-info-tag {
        padding: 4px 10px;
        font-size: 10px;
    }
}

/* ÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±m */
.top-features {
    padding: 20px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 80%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.top-feature-card {
    background-color: var(--star-bonus-card-background-color);
    border-radius: 16px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 10px 20px var(--star-box-shadow-color);
    border: 1px solid var(--star-border-color);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    flex-direction: column;
}

.top-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 70%, rgba(255, 255, 255, 0.05) 70%);
    z-index: 0;
    transition: all 0.5s ease;
}

.top-feature-card::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: linear-gradient(to right, rgba(255, 140, 0, 0.15), rgba(255, 140, 0, 0));
    border-radius: 14px;
    z-index: -1;
    opacity: 0.3;
    transition: all 0.5s ease;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.top-feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.top-feature-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 18px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.top-feature-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    filter: brightness(1.2);
    z-index: -1;
    transition: all 0.5s ease;
}

.user-icon {
    background: linear-gradient(135deg, #ff8c00, #ff6600);
    color: white;
}

.daily-icon {
    background: linear-gradient(135deg, #ff5722, #ff3d00);
    color: white;
}

.sponsor-icon {
    background: linear-gradient(135deg, #ffc107, #ffab00);
    color: black;
}

.live-icon {
    background: linear-gradient(135deg, #f44336, #d32f2f);
    color: white;
}

.top-feature-text h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--star-normal-text-color);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    font-weight: bold;
    text-align: center;
}

.top-feature-text p {
    font-size: 14px;
    color: var(--star-button-background-color);
    font-weight: bold;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    text-align: center;
}

/* Sparkle efekti */
.top-feature-card .sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 15px 3px rgba(255, 255, 255, 0.4);
    pointer-events: none;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.top-feature-card:nth-child(1) .sparkle {
    background-color: rgba(255, 152, 0, 0.8);
    box-shadow: 0 0 15px 3px rgba(255, 152, 0, 0.4);
}

.top-feature-card:nth-child(2) .sparkle {
    background-color: rgba(255, 87, 34, 0.8);
    box-shadow: 0 0 15px 3px rgba(255, 87, 34, 0.4);
}

.top-feature-card:nth-child(3) .sparkle {
    background-color: rgba(255, 193, 7, 0.8);
    box-shadow: 0 0 15px 3px rgba(255, 193, 7, 0.4);
}

.top-feature-card:nth-child(4) .sparkle {
    background-color: rgba(244, 67, 54, 0.8);
    box-shadow: 0 0 15px 3px rgba(244, 67, 54, 0.4);
}

.top-feature-card .sparkle:nth-child(1) {
    top: 20%;
    left: 15%;
    animation: sparkleAnimation 4s infinite 0.5s;
}

.top-feature-card .sparkle:nth-child(2) {
    top: 60%;
    left: 35%;
    animation: sparkleAnimation 5s infinite 1s;
}

.top-feature-card .sparkle:nth-child(3) {
    top: 30%;
    right: 25%;
    animation: sparkleAnimation 6s infinite 1.5s;
}

@keyframes sparkleAnimation {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    25% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 0.2;
        transform: scale(0.5);
    }
    75% {
        opacity: 0.6;
        transform: scale(0.8);
    }
    100% {
        opacity: 0;
        transform: scale(0);
    }
}

.top-feature-card:hover .sparkle {
    opacity: 1;
}

.top-feature-link,
.mobile-feature-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.top-feature-link:hover .top-feature-card,
.mobile-feature-link:hover .mobile-feature-card {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.top-feature-link:hover .top-feature-icon,
.mobile-feature-link:hover .mobile-feature-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Mobil uyumluluk iÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§in medya sorgularÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± */
@media (max-width: 1200px) {
    .top-features {
        max-width: 90%;
    }
}

@media (max-width: 992px) {
    .top-features {
        grid-template-columns: repeat(2, 1fr);
        max-width: 95%;
    }
}

@media (max-width: 768px) {
    .top-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 15px 0;
    }
    
    .top-feature-card {
        padding: 12px;
    }
    
    .top-feature-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-right: 10px;
    }
    
    .top-feature-text h3 {
        font-size: 14px;
    }
    
    .top-feature-text p {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .top-features {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .top-feature-card {
        max-width: 100%;
    }
}

/* Footer Stiller */
.footer {
    padding: 15px 30px;
    background-color: var(--star-navbar-bg);
    border-top: 1px solid var(--star-border-color);
    margin-top: 30px;
    width: calc(100% - var(--sidebar-width));
    margin-left: var(--sidebar-width);
    position: relative;
    z-index: 1;
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), margin-left 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: width, margin-left;
}

/* Sidebar collapsed durumunda footer genişlemesi */
.sidebar.collapsed ~ .main-content ~ .footer,
.sidebar.collapsed ~ .footer {
    width: calc(100% - var(--collapsed-sidebar-width));
    margin-left: var(--collapsed-sidebar-width);
}

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

.footer-left {
    display: flex;
    flex-direction: column;
}

.footer-copyright {
    font-size: 12px;
    color: var(--star-onemsiz-text-color);
    margin-bottom: 5px;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-contact-label {
    font-size: 12px;
    color: var(--star-onemsiz-text-color);
}

.footer-contact-email {
    font-size: 12px;
    color: var(--star-onemsiz-text-color);
    font-weight: 500;
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-logo {
    max-width: 150px;
    height: auto;
}

.visitor-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 140, 0, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 140, 0, 0.2);
}

.visitor-counter i {
    color: var(--star-button-background-color);
    font-size: 14px;
}

.visitor-count {
    color: var(--star-button-background-color);
    font-weight: 600;
    font-size: 14px;
}

.visitor-label {
    color: var(--star-normal-text-color);
    font-size: 12px;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-social-container {
    display: flex;
    gap: 8px;
}

.footer-social {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    transition: all 0.3s ease;
}

.footer-social:hover {
    transform: translateY(-3px);
}

.footer-discord {
    background-color: #7289DA;
}

.footer-telegram {
    background-color: #2AABEE;
}

.footer-kick {
    background-color: #5AFF3D;
    color: black;
}

.footer-twitch {
    background-color: #9146FF;
}

.footer-instagram {
    background-color: #E1306C;
}

.footer-youtube {
    background-color: #FF0000;
}

.footer-credits {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--star-onemsiz-text-color);
}

.footer-credits img {
    height: 20px;
    margin-left: -20px;
}

/* Mobil Kartlar */
.mobile-features {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 20px 15px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.mobile-feature-card {
    background-color: var(--star-bonus-card-background-color);
    border-radius: 16px;
    padding: 15px;
    display: flex;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.mobile-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 70%, rgba(255, 255, 255, 0.05) 70%);
    z-index: 0;
    transition: all 0.5s ease;
}

.mobile-feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.mobile-feature-card .sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 15px 3px rgba(255, 255, 255, 0.4);
    pointer-events: none;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-feature-card:nth-child(1) .sparkle {
    background-color: rgba(255, 152, 0, 0.8);
    box-shadow: 0 0 15px 3px rgba(255, 152, 0, 0.4);
}

.mobile-feature-card:nth-child(2) .sparkle {
    background-color: rgba(255, 87, 34, 0.8);
    box-shadow: 0 0 15px 3px rgba(255, 87, 34, 0.4);
}

.mobile-feature-card:nth-child(3) .sparkle {
    background-color: rgba(255, 193, 7, 0.8);
    box-shadow: 0 0 15px 3px rgba(255, 193, 7, 0.4);
}

.mobile-feature-card:nth-child(4) .sparkle {
    background-color: rgba(244, 67, 54, 0.8);
    box-shadow: 0 0 15px 3px rgba(244, 67, 54, 0.4);
}

.mobile-feature-card .sparkle:nth-child(1) {
    top: 20%;
    left: 15%;
    animation: sparkleAnimation 4s infinite 0.5s;
}

.mobile-feature-card .sparkle:nth-child(2) {
    top: 60%;
    left: 35%;
    animation: sparkleAnimation 5s infinite 1s;
}

.mobile-feature-card .sparkle:nth-child(3) {
    top: 30%;
    right: 25%;
    animation: sparkleAnimation 6s infinite 1.5s;
}

.mobile-feature-card:hover .sparkle {
    opacity: 1;
}

.mobile-feature-link:hover .mobile-feature-card {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.mobile-feature-link:hover .mobile-feature-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Sponsor SayfasÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ'Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± Stilleri */
.sponsor-page {
    padding: 20px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-subtitle {
    color: var(--star-onemsiz-text-color);
    font-size: 16px;
    margin-top: 5px;
}

.sponsor-filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.sponsor-search {
    position: relative;
    width: 300px;
}

.sponsor-search-input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border-radius: 30px;
    border: none;
    background-color: var(--star-card-background-color);
    color: var(--star-normal-text-color);
    font-size: 14px;
    transition: all 0.3s ease;
}

.sponsor-search-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--star-button-background-color);
}

.sponsor-search-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background-color: var(--star-button-background-color);
    color: var(--star-button-text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sponsor-search-btn:hover {
    background-color: var(--star-button-hover-background-color);
    transform: scale(1.05);
}

.sponsor-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid var(--star-card-background-color);
    background-color: transparent;
    color: var(--star-normal-text-color);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--star-button-background-color);
    border-color: var(--star-button-hover-background-color);
}

.sponsor-container {
    margin-bottom: 40px;
}

.sponsor-col {
    margin-bottom: 30px;
}

.sponsor-card {
    background-color: var(--star-card-background-color);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px var(--star-box-shadow-color);
    border: 2px solid var(--star-button-background-color);
}

.sponsor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(255, 152, 0, 0.3);
}

.sponsor-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--star-button-background-color), var(--star-button-hover-background-color));
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 3px 10px var(--star-box-shadow-color);
}

.sponsor-badge i {
    font-size: 10px;
}

.sponsor-logo {
    height: 144px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: var(--star-border-color);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sponsor-logo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.sponsor-card:hover .sponsor-logo::before {
    animation: shine 1.5s infinite;
}

.sponsor-logo img {
    width: 80%;
    max-height: 80px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.sponsor-card:hover .sponsor-logo img {
    transform: scale(1.1);
}

.sponsor-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-align: center;
}

.sponsor-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--star-normal-text-color);
    text-align: center;
}

.sponsor-subtitle {
    font-size: 14px;
    color: var(--star-onemsiz-text-color);
    margin-bottom: 10px;
    text-align: center;
}

.sponsor-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
    justify-content: center;
}

.sponsor-info-tag {
    background-color: var(--star-border-color);
    color: var(--star-onemli-text-color);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.sponsor-info-tag i {
    color: var(--star-button-background-color);
}

.bonus-container {
    background: var(--star-border-color);
    padding: 10px 15px;
    border-radius: 10px;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bonus-amount {
    font-size: 22px;
    font-weight: 700;
    color: var(--star-onemli-text-color);
}

.bonus-text {
    font-size: 12px;
    color: var(--star-onemsiz-text-color);
}

.sponsor-btn {
    background-color: var(--star-button-background-color);
    color: var(--star-button-text-color);
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sponsor-btn:hover {
    background-color: var(--star-button-hover-background-color);
}

.load-more-container {
    text-align: center;
    margin: 20px 0 40px;
}

.load-more-btn {
    background-color: transparent;
    border: 2px solid var(--star-button-background-color);
    color: var(--star-button-background-color);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.load-more-btn:hover {
    background-color: var(--star-button-background-color);
    color: white;
}

.become-sponsor {
    background-color: var(--star-card-background-color);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.become-sponsor::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), transparent);
    z-index: 0;
}

.become-sponsor-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.become-sponsor-text {
    flex: 1;
}

.become-sponsor-text h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--star-normal-text-color);
}

.become-sponsor-text p {
    font-size: 16px;
    color: var(--star-onemsiz-text-color);
    margin-bottom: 20px;
}

.become-sponsor-btn {
    background-color: var(--star-button-background-color);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.become-sponsor-btn:hover {
    background-color: var(--star-button-hover-background-color);
    transform: translateY(-3px);
}

.become-sponsor-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.become-sponsor-image img {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
}

@media (max-width: 992px) {
    .become-sponsor-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .become-sponsor-text {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .sponsor-filter-container {
        flex-direction: column;
        align-items: stretch;
    }
    .footer {
        padding: 15px 30px;
        background-color: var(--star-navbar-bg);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        margin-top: 30px;
        width: 100%;
        margin-left: 0px;
    }
    .sponsor-search {
        width: 100%;
    }
    
    .sponsor-filter {
        justify-content: center;
    }
    
    .sponsor-page {
        padding: 10px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .become-sponsor {
        padding: 20px;
    }
    
    .become-sponsor-text h2 {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .sponsor-col {
        width: 100%;
    }
    
    .sponsor-logo {
        height: 100px;
        width: 100%;
    }
    
    .sponsor-logo img {
        max-height: 60px;
    }
    
    .sponsor-title {
        font-size: 16px;
    }
    
    .sponsor-subtitle {
        font-size: 12px;
    }
    
    .bonus-amount {
        font-size: 18px;
    }
    
    .sponsor-btn {
        padding: 10px 15px;
        font-size: 14px;
    }
}

.sponsor-row-title {
    font-size: 22px;
    font-weight: 700;
    margin: 30px 0 20px;
    padding-bottom: 10px;
    position: relative;
    color: var(--star-normal-text-color);
}

.sponsor-row-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--star-button-background-color), var(--star-button-hover-background-color));
    border-radius: 3px;
}

@media (max-width: 768px) {
    .sponsor-row-title {
        font-size: 18px;
        margin: 20px 0 15px;
    }
}

/* TÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ'Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±klanabilir kartlar iÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± Stilleri */
.top-feature-link,
.mobile-feature-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.top-feature-link:hover .top-feature-card,
.mobile-feature-link:hover .mobile-feature-card {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.top-feature-link:hover .top-feature-icon,
.mobile-feature-link:hover .mobile-feature-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Mobil uyumluluk iÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§in medya sorgularÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± */
@media (max-width: 1200px) {
    .top-features {
        max-width: 90%;
    }
}

@media (max-width: 992px) {
    .top-features {
        grid-template-columns: repeat(2, 1fr);
        max-width: 95%;
    }
}

@media (max-width: 768px) {
    .top-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 15px 0;
    }
    
    .top-feature-card {
        padding: 12px;
    }
    
    .top-feature-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-right: 10px;
    }
    
    .top-feature-text h3 {
        font-size: 14px;
    }
    
    .top-feature-text p {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .top-features {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .top-feature-card {
        max-width: 100%;
    }
}

/* Market logo baÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸lantÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± stilleri */
.market-logo-link,
.mobile-market-link {
    .profile-avatar-container img {
        width: 30px;
        height: 30px;
    }
    
    .profile-avatar-container i {
        font-size: 30px;
    }
}

/* MasaÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼stÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼ profil avatar container */
.profile-avatar-container {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.profile-avatar-container-mobile img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--star-button-background-color);
    transition: all 0.3s ease;
    object-fit: cover;
}

.profile-avatar-container-mobile i {
    font-size: 35px;
    color: var(--star-button-background-color);
    transition: all 0.3s ease;
}

.profile-avatar-container-mobile:hover img {
    transform: scale(1.05);
    border-color: var(--star-button-hover-background-color);
}

.profile-avatar-container-mobile:hover i {
    color: var(--star-button-hover-background-color);
    transform: scale(1.05);
}

@media (max-width: 576px) {
    .profile-avatar-container-mobile img {
        width: 30px;
        height: 30px;
    }
    
    .profile-avatar-container-mobile i {
        font-size: 30px;
    }
    
    .user-info-mobile .dropdown-menu {
        min-width: 200px;
    }
}

@media (max-width: 400px) {
    .profile-avatar-container-mobile img {
        width: 28px;
        height: 28px;
    }
    
    .profile-avatar-container-mobile i {
        font-size: 28px;
    }
}
card {
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.card img {
    width: 100%;
    height: 70px;
    object-fit: contain;
    background-color: #ffffff17;
    padding: 1px;
    border-radius: 8px;
}

.card-info {
    font-size: 0.9rem;
}

.card-info p {
    margin-bottom: 0.5rem;
    border-bottom: 1px dashed #eee;
    padding-bottom: 0.5rem;
}

.card-info p:last-child {
    border-bottom: none;
}

.btn-group .btn {
    transition: all 0.2s ease;
}

.btn-group .btn:hover {
    transform: scale(1.05);
}

/* Bonus KartlarÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± Yeni TasarÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±m */
.bonus-cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px auto;
    max-width: 1200px;
    flex-wrap: wrap;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.bonus-card {
    background-color: rgba(26, 26, 26, 0.85);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 500px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    animation: fadeInUp 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* Kod Gir kartÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± iÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§in arka plan */
.bonus-card:first-child::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://img.icons8.com/color/240/gift--v1.png') no-repeat;
    background-size: 200px;
    background-position: right -50px center;
    opacity: 0.05;
    z-index: 0;
    filter: blur(2px);
    transition: all 0.5s ease;
}

/* GÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼nlÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼k Puan kartÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± iÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§in arka plan */
.bonus-card:nth-child(2)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://img.icons8.com/color/240/rocket--v1.png') no-repeat;
    background-size: 200px;
    background-position: right -50px center;
    opacity: 0.05;
    z-index: 0;
    filter: blur(2px);
    transition: all 0.5s ease;
}

.bonus-card:hover::before {
    opacity: 0.08;
    filter: blur(1px);
    transform: scale(1.05);
}

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

.bonus-card:nth-child(2) {
    animation-delay: 0.2s;
}

.bonus-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    z-index: 2;
}

/* Arka plan overlay efekti */
.bonus-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 70%, rgba(255, 255, 255, 0.05) 70%);
    z-index: 1;
}

/* Kod Gir KartÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± ÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§in ÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å"zel Stil */
.bonus-card:first-child {
    background-color: var(--star-bonus-card-background-color);
    background-image: var(--star-bonus-card-image-color);
}

/* GÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼nlÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼k Puan KartÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± ÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§in ÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å"zel Stil */
.bonus-card:nth-child(2) {
    background-color: var(--star-bonus-card-background-color);
    background-image: var(--star-bonus-card-image-color);
}

/* Animasyonlu arka plan */
.bonus-card .animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    opacity: 0.15;
    pointer-events: none;
}

.bonus-card:first-child .animated-bg {
    background: url('https://img.icons8.com/fluency/240/gift.png') no-repeat;
    background-size: 300px;
    background-position: right -80px center;
    animation: floatBg 8s ease-in-out infinite alternate;
}

.bonus-card:nth-child(2) .animated-bg {
    background: url('https://img.icons8.com/fluency/240/rocket.png') no-repeat;
    background-size: 300px;
    background-position: right -80px center;
    animation: floatBg 8s ease-in-out infinite alternate;
}

@keyframes floatBg {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.15;
    }
    50% {
        transform: translateY(-10px) scale(1.02);
        opacity: 0.18;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.15;
    }
}

.mobile-feature-card:nth-child(1) .mobile-feature-icon {
    background: linear-gradient(135deg, #ff8c00, #ff6600);
    display: none;
}

.mobile-feature-card:nth-child(2) .mobile-feature-icon {
    background: linear-gradient(135deg, #ff5722, #ff3d00);
    display: none;
}

.mobile-feature-card:nth-child(3) .mobile-feature-icon {
    background: linear-gradient(135deg, #ffc107, #ffab00);
}

.mobile-feature-card:nth-child(4) .mobile-feature-icon {
    background: linear-gradient(135deg, #f44336, #d32f2f);
}

/* Mobil uyumluluk iÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§in medya sorgularÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± */
@media (max-width: 768px) {
    .mobile-features {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
    
    .top-features {
        display: none;
    }
    
    .banner-section {
        padding-top: 10px;
    }
} 

/* Market SayfasÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± Stilleri */
.market-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background-color: var(--star-navbar-bg);
    border-radius: 10px;
    border: 1px solid var(--star-border-color);
}

.market-header h1 {
    color: var(--star-onemli-text-color);
    font-size: 32px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    text-shadow: 0 2px 4px var(--star-box-shadow-color);
}

.market-header p {
    color: var(--star-onemsiz-text-color);
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.market-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.market-item {
    background-color: var(--star-card-background-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.market-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 140, 0, 0.3);
}

.market-item-image {
    height: 120px;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.esbet-bg {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(20, 20, 20, 0.7)), url('../img/market-bg.jpg');
    background-size: cover;
    background-position: center;
}

.market-item-ribbon {
    position: absolute;
    top: 10px;
    right: -30px;
    background-color: var(--star-button-background-color);
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.market-item-brand {
    max-width: 100%;
    object-fit: fill;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
    transition: all 0.3s ease;
    z-index: 2;
}

.market-item:hover .market-item-brand {
    transform: scale(1.1);
}

.market-item-content {
    padding: 20px;
}

.market-item-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--star-normal-text-color);
    font-weight: 600;
}

.market-item-content p {
    color: var(--star-onemsiz-text-color);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
    min-height: 60px;
}

.market-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

.price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.price span {
    font-weight: 700;
    color: var(--star-onemli-text-color);
    font-size: 18px;
}

.btn-buy {
    background-color: var(--star-button-background-color);
    color: var(--star-button-text-color);
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-buy:hover {
    background-color: var(--star-button-hover-background-color);
    transform: translateY(-2px);
}

/* Mobil Uyumluluk iÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§in Market SayfasÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± */
@media (max-width: 768px) {
    .market-items {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .market-header h1 {
        font-size: 28px;
    }
    
    .market-header p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .market-items {
        grid-template-columns: 1fr;
    }
    
    .market-item-content h3 {
        font-size: 16px;
    }
    
    .market-item-content p {
        font-size: 13px;
        min-height: auto;
    }
    
    .price span {
        font-size: 16px;
    }
    
    .btn-buy {
        padding: 6px 12px;
        font-size: 13px;
    }
}

/* Market SayfasÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± UyarÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± Stili */
.alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.alert-warning {
    background-color: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #e6c200;
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #dc3545;
}

.alert-icon {
    font-size: 24px;
    color: var(--star-onemli-text-color);
    flex-shrink: 0;
}

.alert-content {
    flex: 1;
}

.alert-content h4 {
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 600;
}

.alert-content p {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
}

/* Liderlik SayfasÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± Stilleri */
.leaderboard-container {
    background-color: var(--star-card-background-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 30px;
    max-width: 100%;
}

.leaderboard-table {
    width: 100%;
}

.leaderboard-header {
    display: flex;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 15px;
    font-weight: 600;
    color: var(--star-button-background-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.leaderboard-row {
    display: flex;
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    align-items: center;
}

.leaderboard-row:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.leaderboard-row:last-child {
    border-bottom: none;
}

.leaderboard-col {
    display: flex;
    align-items: center;
}

.leaderboard-col:nth-child(1) {
    flex: 0 0 80px;
}

.leaderboard-col:nth-child(2) {
    flex: 1;
}

.leaderboard-col:nth-child(3) {
    flex: 0 0 120px;
    justify-content: flex-end;
}

.user-col {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--star-button-background-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.username {
    font-weight: 500;
    color: white;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Mobil Uyumluluk iÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§in Liderlik SayfasÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± */
@media (max-width: 768px) {
    .leaderboard-header {
        padding: 12px;
    }
    
    .leaderboard-row {
        padding: 10px 12px;
    }
    
    .user-avatar {
        width: 35px;
        height: 35px;
        min-width: 35px;
    }
    
    .leaderboard-col:nth-child(1) {
        flex: 0 0 60px;
        margin-right: 10px;
    }
    
    .leaderboard-col:nth-child(3) {
        flex: 0 0 100px;
    }
}

@media (max-width: 576px) {
    .leaderboard-header {
        padding: 10px;
    }
    
    .leaderboard-row {
        padding: 8px 10px;
    }
    
    .user-avatar {
        width: 30px;
        height: 30px;
        min-width: 30px;
    }
    
    .username {
        font-size: 14px;
    }
    
    .leaderboard-col:nth-child(1) {
        flex: 0 0 40px;
        margin-right: 15px;
    }
    
    .leaderboard-col:nth-child(3) {
        flex: 0 0 80px;
        font-size: 14px;
    }
} 

@media (max-width: 400px) {
    .leaderboard-col:nth-child(1) {
        flex: 0 0 30px;
        margin-right: 20px;
    }
    
    .leaderboard-col:nth-child(3) {
        flex: 0 0 70px;
    }
    
    .user-avatar {
        width: 25px;
        height: 25px;
        min-width: 25px;
    }
    
    .username {
        font-size: 13px;
    }
}

/* Etkinlik SayfasÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± Stilleri */
.etkinlik-container {
    padding: 20px 0;
}

.etkinlik-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.etkinlik-col {
    flex: 0 0 calc(33.333% - 30px);
    max-width: calc(33.333% - 30px);
}

.etkinlik-card {
    background-color: var(--star-card-background-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.etkinlik-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 140, 0, 0.3);
}

.etkinlik-banner {
    height: 180px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.etkinlik-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: all 0.5s ease;
}

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

.etkinlik-logo-container {
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background-color: var(--star-card-background-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--star-button-background-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.etkinlik-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.etkinlik-header {
    padding: 30px 20px 15px;
    text-align: center;
}

.etkinlik-baslik {
    font-size: 20px;
    font-weight: 700;
    color: var(--star-button-text-color);
    margin: 0;
    line-height: 1.3;
}
.etkinlik-aciklama {
    font-size: 14px;
    font-weight: 700;
    color: var(--star-onemsiz-text-color);
    margin: 0;
    word-break: break-word;
    line-height: 1.3;
}
.etkinlik-sayac {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0 20px 15px;
}

.sayac-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 8px;
    min-width: 50px;
}

.sayac-rakam {
    font-size: 20px;
    font-weight: 700;
    color: var(--star-button-background-color);
}

.sayac-birim {
    font-size: 10px;
    color: var(--star-onemsiz-text-color);
    text-transform: uppercase;
}

.etkinlik-bilgiler {
    display: flex;
    justify-content: space-between;
    padding: 0 20px 15px;
}

.etkinlik-bilgi {
    text-align: center;
}

.bilgi-baslik {
    font-size: 12px;
    color: var(--star-onemsiz-text-color);
    margin-bottom: 5px;
}

.bilgi-deger {
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.etkinlik-durum {
    padding: 15px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.etkinlik-durum.aktif {
    background-color: rgba(0, 0, 0, 0.2);
}

.etkinlik-durum.sona_erdi {
    background-color: rgba(220, 53, 69, 0.1);
}

.etkinlik-durum.sona_erdi span {
    color: #dc3545;
    font-size: 14px;
}

.etkinlik-katil-btn {
    display: inline-block;
    background-color: var(--star-button-background-color);
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.etkinlik-katil-btn:hover {
    background-color: var(--star-button-hover-background-color);
    transform: translateY(-2px);
}

.etkinlik-link-btn {
    display: inline-block;
    background-color: var(--star-button-background-color);
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.etkinlik-link-btn:hover {
    background-color: var(--star-button-hover-background-color);
    transform: translateY(-2px);
}
.etkinlik-katildi {
    color: #4caf50;
    font-weight: 600;
    font-size: 14px;
}



.etkinlik-sinir-doldu {
    color: #dc3545;
    font-weight: 600;
    font-size: 14px;
}

/* Mobil Uyumluluk iÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§in Etkinlik SayfasÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± */
@media (max-width: 992px) {
    .etkinlik-col {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
    
    .etkinlik-row {
        gap: 20px;
    }
    
    .etkinlik-banner {
        height: 160px;
    }
}

@media (max-width: 768px) {
    .etkinlik-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .etkinlik-banner {
        height: 200px;
    }
    
    .etkinlik-logo-container {
        top: 170px;
    }
    
    .etkinlik-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .etkinlik-banner {
        height: 180px;
    }
    
    .etkinlik-logo-container {
        top: 150px;
        width: 50px;
        height: 50px;
    }
    
    .etkinlik-logo-img {
        width: 30px;
        height: 30px;
    }
    
    .etkinlik-baslik {
        font-size: 18px;
    }
    
    .sayac-item {
        min-width: 40px;
        padding: 6px;
    }
    
    .sayac-rakam {
        font-size: 16px;
    }
    
    .sayac-birim {
        font-size: 9px;
    }
}

@media (max-width: 400px) {
    .etkinlik-banner {
        height: 160px;
    }
    
    .etkinlik-logo-container {
        top: 130px;
    }
    
    .sayac-item {
        min-width: 35px;
        padding: 5px;
    }
    
    .sayac-rakam {
        font-size: 14px;
    }
    
    .sayac-birim {
        font-size: 8px;
    }
    
    .etkinlik-bilgiler {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}

/* Sizden Gelenler SayfasÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± Stilleri */
.winnings-container {
    background-color: var(--star-card-background-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 30px;
}

.winnings-header {
    padding: 15px;
    display: flex;
    justify-content: flex-end;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.share-win-btn {
    background-color: var(--star-button-background-color);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-win-btn:hover {
    background-color: var(--star-button-hover-background-color);
    transform: translateY(-2px);
}

.winnings-table {
    width: 100%;
}

.winnings-table-header {
    display: flex;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 15px;
    font-weight: 600;
    color: var(--star-button-background-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.winnings-row {
    display: flex;
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.winnings-row:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.winnings-row:last-child {
    border-bottom: none;
}

.winnings-col {
    flex: 1;
    display: flex;
    align-items: center;
}

.win-amount {
    color: #4caf50;
    font-weight: 600;
}

.watch-btn {
    background-color: var(--star-button-background-color);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.watch-btn:hover {
    background-color: var(--star-button-hover-background-color);
    transform: translateY(-2px);
}

.empty-row {
    justify-content: center;
    padding: 30px 15px;
    color: var(--star-onemsiz-text-color);
}

/* Video Modal Stilleri */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

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

.video-info {
    margin-bottom: 15px;
}

.video-info h4 {
    color: white;
    margin-bottom: 5px;
}

/* Modern Form Stilleri */
.modal-body {
    padding: 30px;
    position: relative;
    z-index: 2;
}

.auth-modal .modal-body {
    background: var(--star-card-background-color);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.auth-footer p {
    margin: 0;
    color: var(--star-normal-text-color);
    opacity: 0.8;
}

.auth-footer a {
    color: var(--star-button-background-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.auth-footer a:hover {
    color: var(--star-button-hover-background-color);
    text-shadow: 0 0 8px rgba(255, 165, 0, 0.5);
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--star-button-text-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-group {
    position: relative;
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.input-group:focus-within {
    border-color: var(--star-button-background-color);
    box-shadow: 
        0 0 0 3px rgba(255, 165, 0, 0.1),
        0 8px 25px rgba(255, 165, 0, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.input-group-text {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: none;
    color: var(--star-button-text-color);
    padding: 15px 18px;
    display: flex;
    align-items: center;
    font-size: 16px;
}

.form-control {
    background: transparent;
    border: none;
    padding: 15px 20px;
    color: var(--star-normal-text-color) !important;
    font-size: 16px;
    flex: 1;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.02);
    color: var(--star-normal-text-color) !important;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
    font-weight: 400;
}

.custom-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--star-normal-text-color) !important;
    padding: 15px 20px;
    border-radius: 12px;
    margin-top: 8px;
    font-size: 16px;
    width: 100%;
    transition: all 0.3s ease;
}

.custom-input:focus {
    outline: none;
    border-color: var(--star-button-background-color);
    box-shadow: 
        0 0 0 3px rgba(255, 165, 0, 0.1),
        0 8px 25px rgba(255, 165, 0, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: var(--star-normal-text-color) !important;
}

.custom-input::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

.auth-btn, .custom-btn-register {
    width: 100%;
    padding: 16px 25px;
    background: linear-gradient(135deg, var(--star-button-background-color), var(--star-button-hover-background-color));
    color: var(--star-button-text-color);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 
        0 8px 25px var(--star-button-background-color)4D,
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.auth-btn::before, .custom-btn-register::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.auth-btn:hover, .custom-btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 35px var(--star-button-background-color)66,
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    filter: brightness(1.1);
}

.auth-btn:hover::before, .custom-btn-register:hover::before {
    left: 100%;
}

.auth-btn:active, .custom-btn-register:active {
    transform: translateY(0);
}

.forgot-password-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--star-normal-text-color);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.forgot-password-link:hover {
    color: var(--star-button-background-color);
    opacity: 1;
    text-shadow: 0 0 8px var(--star-button-background-color)80;
}

.reset-btn {
    width: 100%;
    padding: 16px 25px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 
        0 8px 25px rgba(76, 175, 80, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.reset-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.reset-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 35px rgba(76, 175, 80, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    filter: brightness(1.1);
}

.reset-btn:hover::before {
    left: 100%;
}

/* Modal Mobil Uyumluluk */
@media (max-width: 768px) {
    .auth-modal, .custom-modal {
        margin: 10px;
        border-radius: 15px;
    }
    
    .modal-header {
        padding: 20px;
        border-radius: 15px 15px 0 0;
    }
    
    .modal-header .auth-title {
        font-size: 20px;
    }
    
    .auth-modal .modal-logo img {
        height: 35px;
        max-width: 150px;
    }
    
    .btn-close {
        width: 35px;
        height: 35px;
    }
    
    .auth-close-icon {
        width: 16px;
        height: 16px;
    }
    
    .modal-body {
        padding: 25px 20px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .input-group-text {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .form-control, .custom-input {
        padding: 12px 16px;
        font-size: 14px;
        border-radius: 10px;
    }
    
    .auth-btn, .custom-btn-register, .reset-btn {
        padding: 14px 20px;
        font-size: 14px;
        border-radius: 10px;
    }
}

@media (max-width: 576px) {
    .auth-modal, .custom-modal {
        margin: 5px;
        border-radius: 12px;
    }
    
    .modal-header {
        padding: 15px;
        border-radius: 12px 12px 0 0;
    }
    
    .modal-header .auth-title {
        font-size: 18px;
    }
    
    .auth-modal .modal-logo img {
        height: 30px;
        max-width: 120px;
    }
    
    .btn-close {
        width: 30px;
        height: 30px;
    }
    
    .auth-close-icon {
        width: 14px;
        height: 14px;
    }
    
    .modal-body {
        padding: 20px 15px;
    }
    
    .form-group label {
        font-size: 12px;
    }
    
    .input-group-text {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .form-control, .custom-input {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .auth-btn, .custom-btn-register, .reset-btn {
        padding: 12px 18px;
        font-size: 13px;
    }
}

/* Modern Modal Stilleri */
.auth-modal, .custom-modal {
    background: var(--star-modal-background-color);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid var(--star-border-color);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    color: var(--star-normal-text-color);
    position: relative;
    overflow: hidden;
}

.auth-modal::before, .custom-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    z-index: 1;
}

.modal-header {
    border-bottom: 1px solid var(--star-border-color);
    background: var(--star-card-background-color);
    border-radius: 20px 20px 0 0;
    padding: 25px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.auth-modal .modal-logo {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.auth-modal .modal-logo img {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.modal-header .auth-title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: var(--star-onemli-text-color);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.auth-modal .auth-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--star-onemli-text-color);
    margin: 0 0 1rem 0;
    text-align: center;
}

.btn-close {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--star-normal-text-color);
    opacity: 0.8;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.auth-close-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-close:hover {
    opacity: 1;
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.3);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.2);
}

.btn-close:hover .auth-close-icon {
    transform: rotate(90deg) scale(1.1);
}

.btn-close:active .auth-close-icon {
    transform: rotate(180deg) scale(1.1);
}

/* Mobil Uyumluluk iÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§in Sizden Gelenler SayfasÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± */
@media (max-width: 992px) {
    .winnings-table-header {
        display: none;
    }
    
    .winnings-row {
        flex-direction: column;
        padding: 15px;
    }
    
    .winnings-col {
        padding: 8px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .winnings-col:last-child {
        border-bottom: none;
    }
    
    .winnings-col:before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--star-button-background-color);
        width: 120px;
        min-width: 120px;
        margin-right: 10px;
    }
    
    .empty-row .winnings-col:before {
        content: none;
    }
}

@media (max-width: 576px) {
    .winnings-header {
        justify-content: center;
    }
    
    .share-win-btn {
        width: 100%;
        justify-content: center;
    }
    
    .winnings-col:before {
        width: 100px;
        min-width: 100px;
    }
    
    .watch-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Footer Credit Stilleri */
.footer-credit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    margin-bottom: 10px;
    padding: 10px 15px;
    background-color: var(--star-border-color);
    backdrop-filter: blur(5px);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
    /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); */
}

.footer-credit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(186deg, rgb(30 30 30 / 3%), #f7f7f700);
    z-index: 0;
}

.footer-credit:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    border-color: rgba(100, 150, 255, 0.15);
    background-color: rgba(25, 30, 40, 0.35);
}

.footer-credit span {
    font-size: 10px;
    color: var(--star-normal-text-color);
    margin-bottom: 6px;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-transform: none;
    position: relative;
    z-index: 1;
    text-align: center;
}

.footer-credit img {
    height: 22px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.15));
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    display: block;
}

.footer-credit:hover img {
    transform: scale(1.03);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2)) brightness(1.05);
}

/* Mobil Uyumluluk iÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§in Footer Credit */
@media (max-width: 768px) {
    .footer-credit {
        margin-top: 12px;
        margin-bottom: 8px;
        padding: 8px 12px;
    }
    
    .footer-credit span {
        font-size: 9px;
        margin-bottom: 5px;
    }
    
    .footer-credit img {
        height: 20px;
    }
}

@media (max-width: 576px) {
    .footer-credit {
        margin-top: 10px;
        margin-bottom: 8px;
        padding: 6px 10px;
        flex-direction: row;
        gap: 8px;
        align-items: center;
    }
    
    .footer-credit span {
        margin-bottom: 0;
        font-size: 8px;
        text-align: right;
    }
    
    .footer-credit img {
        height: 18px;
        margin: 0;
    }
}

/* MasaÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼stÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼nde sidebar scroll ÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§ubuÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸unu gizle */
@media (min-width: 769px) {
    .sidebar::-webkit-scrollbar {
        display: none;
    }
    
    .sidebar {
        -ms-overflow-style: none;  /* IE ve Edge iÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§in */
        scrollbar-width: none;  /* Firefox iÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§in */
    }
}
/* Profil KartÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± Stilleri */
.profile-card {
    background-color: var(--star-card-background-color);
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 0, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.profile-card:hover {
    box-shadow: 0 12px 25px rgba(255, 140, 0, 0.15);
    transform: translateY(-5px);
}

.profile-avatar {
    margin: 20px auto;
    width: 100px;
    height: 100px;
    position: relative;
}

.profile-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--star-button-background-color);
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.5);
}

.profile-avatar i {
    font-size: 100px;
    color: var(--star-button-background-color);
    filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.4));
}

.profile-username {
    font-size: 22px;
    font-weight: 600;
    color: var(--star-normal-text-color);
    margin: 10px 0 5px;
}

.profile-email {
    font-size: 14px;
    color: var(--star-onemsiz-text-color);
    margin-bottom: 15px;
}

.profile-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--star-button-background-color);
}

.stat-label {
    font-size: 12px;
    color: var(--star-onemsiz-text-color);
}

/* Profil MenÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼ Stilleri */
.profile-links {
    background-color: var(--star-card-background-color);
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 0, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.profile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profile-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.profile-menu li:last-child {
    border-bottom: none;
}

.profile-menu li a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: var(--star-onemsiz-text-color);
    transition: all 0.3s ease;
    font-size: 14px;
}

.profile-menu li a:hover,
.profile-menu li.active a {
    background-color: rgba(255, 140, 0, 0.1);
    color: var(--star-button-background-color);
}

.profile-menu li a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    color: var(--star-button-background-color);
}


/* Sponsor HesaplarÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± BÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¶lÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼mÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼ */
.sponsor-card {
    background-color: var(--star-card-background-color);
    border-radius: 12px;
    border: 1px solid var(--star-border-color);
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.sponsor-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.15);
}

.sponsor-highlight {
    animation: highlight-sponsor 1.5s ease-in-out infinite;
    border: 2px solid var(--star-button-background-color) !important;
}

.sponsor-logo {
    /* width: 40px; */
    /* height: 40px; */
    border-radius: 10px;
    object-fit: contain;
    margin-right: 15px;
}

.sponsor-input {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--star-normal-text-color);
    border-radius: 8px;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.sponsor-input:focus {
    border-color: var(--star-button-background-color);
    box-shadow: 0 0 0 2px rgba(255, 140, 0, 0.2);
}

.sponsor-save-btn {
    background-color: var(--star-button-background-color);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sponsor-save-btn:hover {
    background-color: var(--star-button-hover-background-color);
    transform: translateY(-2px);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .profile-avatar {
        width: 80px;
        height: 80px;
    }
    
    .profile-avatar img {
        width: 80px;
        height: 80px;
    }
    
    .profile-avatar i {
        font-size: 80px;
    }
    
    .profile-username {
        font-size: 20px;
    }
    
    .profile-stats {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .profile-avatar {
        width: 70px;
        height: 70px;
    }
    
    .profile-avatar img {
        width: 70px;
        height: 70px;
    }
    
    .profile-avatar i {
        font-size: 70px;
    }
    
    .stat-value {
        font-size: 18px;
    }
    
    .stat-label {
        font-size: 11px;
    }
}
/* Profil DÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼zenleme KartÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± Stilleri */
.profile-edit-card {
    background-color: var(--star-card-background-color);
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 0, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.profile-edit-card:hover {
    box-shadow: 0 12px 25px rgba(255, 140, 0, 0.15);
    transform: translateY(-5px);
}

.profile-edit-card .card-header {
    background-color: rgba(255, 140, 0, 0.1);
    border-bottom: 1px solid rgba(255, 140, 0, 0.2);
    padding: 15px 20px;
}

.profile-edit-card .card-header h4 {
    margin: 0;
    color: var(--star-normal-text-color);
    font-weight: 600;
    font-size: 18px;
}

.profile-edit-card .card-body {
    padding: 20px;
}

/* Form Elementleri Stilleri */
.profile-edit-card .form-group {
    margin-bottom: 20px;
}

.profile-edit-card label {
    color: var(--star-onemsiz-text-color);
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
}

.profile-edit-card .form-control {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--star-normal-text-color);
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.profile-edit-card .form-control:focus {
    border-color: var(--star-button-background-color);
    box-shadow: 0 0 0 2px rgba(255, 140, 0, 0.2);
    background-color: rgba(0, 0, 0, 0.3);
}

.profile-edit-card .input-group-text {
    background-color: rgba(255, 140, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--star-button-background-color);
}

.profile-edit-card .form-text {
    font-size: 12px;
    color: var(--star-onemsiz-text-color);
}

/* Butonlar */
.profile-save-btn {
    background-color: var(--star-button-background-color);
    border: none;
    border-radius: 8px;
    color: white;
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.profile-save-btn:hover {
    background-color: var(--star-button-hover-background-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

/* Alert Stilleri */
.alert {
    border-radius: 10px;
    border: none;
    padding: 15px;
    margin-bottom: 20px;
}

.alert-success {
    background-color: rgba(25, 135, 84, 0.2);
    color: #1aae6f;
    border-left: 4px solid #1aae6f;
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.2);
    color: #f5365c;
    border-left: 4px solid #f5365c;
}

.alert-warning {
    background-color: var(--star-sidebar-button-background-color);
    color: var(--star-onemli-text-color);
    border-left: 4px solid var(--star-onemli-text-color);
}

.alert i {
    margin-right: 10px;
}

/* Telegram DoÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸rulama Butonu */
.telegram-verify-btn {
    background-color: #0088cc;
    border-color: #0088cc;
    color: #fff;
    padding: 0.375rem 0.75rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.telegram-verify-btn:hover {
    background-color: #006699;
    border-color: #006699;
}

.telegram-verify-btn i {
    margin-right: 5px;
}

/* Telegram Highlight Efekti */
@keyframes highlight-telegram {
    0% { box-shadow: 0 0 0 0 rgba(0, 136, 204, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 136, 204, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 136, 204, 0); }
}

.telegram-highlight {
    animation: highlight-telegram 1.5s ease-in-out infinite;
    border: 2px solid #0088cc !important;
}

/* Aktivite KartÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± Stilleri */
.profile-activity-card {
    background-color: var(--star-card-background-color);
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 0, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.profile-activity-card:hover {
    box-shadow: 0 12px 25px rgba(255, 140, 0, 0.15);
    transform: translateY(-5px);
}

.profile-activity-card .card-header {
    background-color: rgba(255, 140, 0, 0.1);
    border-bottom: 1px solid rgba(255, 140, 0, 0.2);
    padding: 15px 20px;
}

.profile-activity-card .card-header h4 {
    margin: 0;
    color: var(--star-normal-text-color);
    font-weight: 600;
    font-size: 18px;
}

.activity-list {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.activity-item {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    display: flex;
    align-items: center;
}

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

.activity-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 140, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--star-button-background-color);
    flex-shrink: 0;
}

.activity-icon i {
    font-size: 16px;
}

.activity-details {
    flex-grow: 1;
}

.activity-title {
    color: var(--star-normal-text-color);
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 3px;
}

.activity-time {
    color: var(--star-onemsiz-text-color);
    font-size: 12px;
}

.activity-amount {
    color: var(--star-button-background-color);
    font-weight: 700;
    font-size: 16px;
    margin-left: 10px;
}

.activity-status {
    padding: 3px 8px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 500;
    margin-left: 10px;
    display: inline-block;
}

.status-completed {
    background-color: rgba(25, 135, 84, 0.2);
    color: #1aae6f;
}

.status-pending {
    background-color: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.status-cancelled {
    background-color: rgba(220, 53, 69, 0.2);
    color: #f5365c;
}

/* Kripto CÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼zdan KartlarÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± Stilleri */
.crypto-cards .col-md-4 {
    margin-bottom: 15px;
}

.crypto-card {
    background-color: rgba(255, 140, 0, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.crypto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.15);
}

.crypto-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.crypto-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.crypto-name {
    font-weight: 600;
    color: var(--star-normal-text-color);
    margin-left: 10px;
}

.crypto-input {
    margin-top: 10px;
    font-size: 13px;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .profile-edit-card .card-body,
    .profile-activity-card .card-body {
        padding: 15px;
    }
    
    .activity-item {
        padding: 12px 0;
    }
    
    .activity-icon {
        width: 35px;
        height: 35px;
    }
    
    .activity-title {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .profile-edit-card .card-header,
    .profile-activity-card .card-header {
        padding: 12px 15px;
    }
    
    .profile-edit-card .card-header h4,
    .profile-activity-card .card-header h4 {
        font-size: 16px;
    }
    
    .activity-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .activity-icon {
        margin-bottom: 10px;
    }
    
    .activity-amount {
        margin-left: 0;
        margin-top: 5px;
        display: block;
    }
}

/* MasaÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼stÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼ dropdown menÃƒÆ'Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ'Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ'Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ'Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼ stilleri */
.user-info .dropdown-menu {
    background-color: var(--star-card-background-color);
    border: 1px solid var(--star-border-color);
    box-shadow: 0 5px 15px var(--star-box-shadow-color);
    border-radius: 10px;
    padding: 15px;
    min-width: 250px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
    transform-origin: top right;
}

.user-info .dropdown-item {
    color: var(--star-normal-text-color);
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.user-info .dropdown-item:hover {
    background-color: rgba(255, 140, 0, 0.15);
    transform: translateX(3px);
}

.user-info .dropdown-item-user {
    padding: 0;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-info .dropdown-item-user .user-profile-pic {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--star-onemli-text-color);
    box-shadow: 0 0 10px var(--star-box-shadow-color), 0.3;
}

.user-info .dropdown-item-user .user-profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info .dropdown-item-user .user-profile-pic i {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 140, 0, 0.1);
    color: var(--star-onemli-text-color);
}

.user-info .dropdown-item-user .user-info-text {
    display: flex;
    flex-direction: column;
}

.user-info .username {
    font-weight: 600;
    font-size: 15px;
    color: white;
    display: block;
    text-align: left;
    margin-bottom: 2px;
}

.user-info .user-status {
    font-size: 12px;
    color: var(--star-onemsiz-text-color);
}

.user-info .dropdown-item-coins {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(255, 140, 0, 0.05);
    border-radius: 8px;
    margin-bottom: 12px;
}

.user-info .coin-balance {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--star-button-background-color);
    font-weight: 600;
    font-size: 16px;
}

.user-info .coin-icon {
    filter: drop-shadow(0 0 3px rgba(255, 140, 0, 0.5));
}

.user-info .dropdown-divider {
    margin: 8px 0;
    border-color: rgba(255, 255, 255, 0.08);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobil profil avatar container */
.profile-avatar-container-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.profile-avatar-container-mobile img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--star-button-background-color);
    transition: all 0.3s ease;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.4);
}

.profile-avatar-container-mobile i {
    font-size: 35px;
    color: var(--star-button-background-color);
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(255, 140, 0, 0.4));
}

.profile-avatar-container-mobile:hover img {
    transform: scale(1.05);
    border-color: var(--star-button-hover-background-color);
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.6);
}
 
.profile-avatar-container-mobile:hover i {
    color: var(--star-button-hover-background-color);
    transform: scale(1.05);
    filter: drop-shadow(0 0 8px rgba(255, 102, 0, 0.6));
}

.user-info-mobile .dropdown-menu {
    background-color: var(--star-card-background-color);
    border: 1px solid var(--star-border-color);
    box-shadow: 0 5px 15px var(--star-box-shadow-color);
    border-radius: 10px;
    padding: 15px;
    min-width: 250px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.user-info-mobile .dropdown-item {
    color: var(--star-normal-text-color);
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.user-info-mobile .dropdown-item:hover {
    background-color: rgba(255, 140, 0, 0.15);
    transform: translateX(3px);
}

.user-info-mobile .dropdown-item-user {
    padding: 0;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-info-mobile .dropdown-item-user .user-profile-pic {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--star-button-background-color);
    box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.3);
}

.user-info-mobile .dropdown-item-user .user-profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info-mobile .dropdown-item-user .user-profile-pic i {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 140, 0, 0.1);
    color: var(--star-button-background-color);
}

.user-info-mobile .dropdown-item-user .user-info-text {
    display: flex;
    flex-direction: column;
}

.user-info-mobile .username {
    font-weight: 600;
    font-size: 15px;
    color: white;
    display: block;
    text-align: left;
    margin-bottom: 2px;
}

.user-info-mobile .user-status {
    font-size: 12px;
    color: var(--star-onemsiz-text-color);
}

.user-info-mobile .dropdown-item-coins {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(255, 140, 0, 0.05);
    border-radius: 8px;
    margin-bottom: 12px;
}

.user-info-mobile .coin-balance {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--star-button-background-color);
    font-weight: 600;
    font-size: 16px;
}

.user-info-mobile .coin-icon {
    filter: drop-shadow(0 0 3px rgba(255, 140, 0, 0.5));
}

.user-info-mobile .dropdown-divider {
    margin: 8px 0;
    border-color: rgba(255, 255, 255, 0.08);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@900&display=swap");
.market-text {
    font-weight: 700;
    font-size: 10px;
    color: var(--star-normal-text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 6px;
}

/* Rotating coin styles */
.coin-wrap {
    transform: perspective(400px);
    transform-style: preserve-3d;
    display: inline-block;
    filter: drop-shadow(0 5px 3px rgba(255, 176, 82, 0.3));
}

.coin {
    position: relative;
    transform-style: preserve-3d;
    width: 30px;
    height: 30px;
    animation: coin 3s infinite linear;
}

.coin:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 11px;
    top: 0;
    width: 4px;
    transform: rotateY(-90deg);
    transform-origin: 100% 50%;
    background-color: #ff6600;
}

.coin__front, .coin__back {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.coin__front {
    background: linear-gradient(135deg, #ffb052, #ff8c00, #ff6600);
}

.coin__front:before, .coin__back:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    transform: scale(0.8);
    box-shadow: -1px -2px #ff6600, 1px 2px #ffb052;
}

.coin__back {
    position: absolute;
    top: 0;
    transform: translateZ(-4px) rotateY(-180deg);
    background: linear-gradient(135deg, #ff9d2f, #ff7b00, #ff6600);
}

.coin__front-backface, .coin__back-backface {
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #ff6600;
}

.coin__front-backface {
    transform: translateZ(-1px);
}

.coin__back-backface {
    transform: translateZ(-3px);
}

.coin__front-star, .coin__back-star {
    position: absolute;
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.coin__front-star {
    background-color: #ffb052;
}

.coin__back-star {
    background-color: #ffb052;
}

@keyframes coin {
    to {
        transform: rotateY(-359deg);
    }
}

/* Mobile navbar styling for demo */
.mobile-navbar {
    background-color: var(--star-navbar-bg);
    padding: 10px 15px;
    border-radius: 8px;
}

.mobile-navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-toggle {
    color: white;
}

.mobile-market-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}


#load {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--star-navbar-bg);
    z-index: 9999;
}

#load .logo-loader {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#load .logo-loader img {
    width: 250px;
    height: auto;
    animation: pulse-glow 2s infinite ease-in-out;
}

@keyframes pulse-glow {
    0% {
        transform: scale(0.9);
        filter: brightness(0.8) drop-shadow(0 0 0 var(--star-button-background-color, #ff9800));
    }
    50% {
        transform: scale(1.1);
        filter: brightness(1.2) drop-shadow(0 0 15px var(--star-button-background-color, #ff9800));
    }
    100% {
        transform: scale(0.9);
        filter: brightness(0.8) drop-shadow(0 0 0 var(--star-button-background-color, #ff9800));
    }
}

/* Mobil cihazlar iÃƒÆ'Ã†â€™Ãƒâ€šÃ‚Â§in duyarlÃƒÆ'Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â± boyutlandÃƒÆ'Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â±rma */
@media (max-width: 768px) {
    #load .logo-loader img {
        width: 180px;
    }
}

/* Sponsor Container Mobil Stilleri */
.sponsor-container {
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .sponsor-container {
        padding: 0 10px;
    }
    
    .sponsor-container .row {
        margin: 0 -8px;
    }
    
    .sponsor-container .sponsor-col {
        padding: 0 8px;
        margin-bottom: 16px;
        flex: 0 0 50%;
        max-width: 50%;
    }
    
.sponsor-container .sponsor-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
    background-color: var(--star-card-background-color);
}
    
    .sponsor-container .sponsor-logo {
        height: 100px;
        padding: 15px;
    }
    
    .sponsor-container .sponsor-logo img {
        max-height: 70px;
    }
    
    .sponsor-container .sponsor-info {
        padding: 12px;
    }
    
    .sponsor-container .sponsor-title {
    font-size: 14px;
        margin-bottom: 4px;
        white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    }
    
    .sponsor-container .sponsor-subtitle {
        font-size: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    overflow: hidden;
        text-overflow: ellipsis;
        height: auto;
        min-height: 42px;
        max-height: 60px;
    }
    
    .sponsor-container .sponsor-tags {
        margin-bottom: 8px;
        gap: 4px;
    }
    
    .sponsor-container .sponsor-info-tag {
        padding: 4px 5px;
        font-size: 9px;
        margin: 3px;
    }
    
    .sponsor-container .bonus-container {
        padding: 8px;
        margin: 0 8px 8px;
        border-radius: 8px;
    }
    
    .sponsor-container .bonus-amount {
        font-size: 16px;
    }
    
    .sponsor-container .bonus-text {
        font-size: 11px;
    }
    
    .sponsor-container .sponsor-btn {
        padding: 6px 12px;
        font-size: 11px;
        margin: 0 10px;
        margin-bottom: 10px;
        width: calc(100% - 20px);
    }
    
    .sponsor-container .sponsor-badge {
        top: 8px;
        right: 8px;
        padding: 3px 8px;
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .sponsor-container .sponsor-col {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .sponsor-container .sponsor-logo {
        height: 50px;
        padding: 10px;
    }
    
    .sponsor-container .sponsor-logo img {
        max-height: 60px;
    }
    
    .sponsor-container .sponsor-info {
        padding: 2px;
    }
    
    .sponsor-container .sponsor-title {
        font-size: 13px;
    }
    
    .sponsor-container .sponsor-subtitle {
        font-size: 11px;
    }
    
    .sponsor-container .bonus-container {
        padding: 2px;
        margin: 25px 6px 6px;
    }
    
    .sponsor-container .bonus-amount {
        font-size: 14px;
    }
    
    .sponsor-container .bonus-text {
        font-size: 10px;
    }
    
    .sponsor-container .sponsor-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
}

/* Modern Label Stilleri */
label {
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
    color: var(--star-onemli-text-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: var(--star-normal-text-color);
    pointer-events: auto;
    background-color: var(--star-card-background-color);
    background-clip: padding-box;
    border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
    border-radius: var(--bs-modal-border-radius);
    outline: 0;
}

.modal-footer {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * .5);
    background-color: var(--star-card-background-color);
    border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
    border-bottom-right-radius: var(--bs-modal-inner-border-radius);
    border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}

.clownfruit-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background-color: var(--star-bonus-card-image-color);
    box-shadow: 0 5px 15px var(--star-box-shadow-color);
    transition: all 0.3s ease;
    margin-bottom: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.clownfruit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.clownfruit-header {
    background-color: var(--star-card-background-color);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.clownfruit-logo {
    height: 20px;
}

.clownfruit-timer {
    color: var(--star-normal-text-color);
    font-size: 14px;
    display: flex;
    align-items: center;
}

.clownfruit-timer i {
    margin-right: 5px;
}

.clownfruit-content {
    padding: 20px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
    position: relative;
    z-index: 2;
}

.clownfruit-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ffd700;
    text-transform: uppercase;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.clownfruit-subtitle {
    font-size: 18px;
    color: #fff;
    margin-bottom: 15px;
}

.clownfruit-date {
    font-size: 16px;
    color: #aaa;
    margin-bottom: 20px;
}

.clownfruit-prize {
    font-size: 24px;
    font-weight: 700;
    color: #ff8c00;
    margin-bottom: 20px;
}

.clownfruit-image {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    flex-grow: 1;
    object-fit: contain;
}

.clownfruit-btn {
    display: inline-block;
    background-color: #ff8c00;
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 15px;
    border: none;
}

.clownfruit-btn:hover {
    background-color: #ff6600;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.4);
}

/* Alt kÃƒÆ'Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â±sÃƒÆ'Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â±mdaki haberler bilgileri iÃƒÆ'Ã†â€™Ãƒâ€šÃ‚Â§in stiller */
.clownfruit-footer {
    background-color: var(--star-bonus-card-image-color);
    padding: 15px;
    border-radius: 0 0 10px 10px;
    position: relative;
    z-index: 3;
    border-top: 1px solid #333;
}

.clownfruit-footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.clownfruit-footer-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.clownfruit-footer-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--star-normal-text-color);
    margin: 0;
    text-transform: uppercase;
}

.clownfruit-footer-prize {
    font-size: 14px;
    font-weight: 700;
    color: var(--star-onemli-text-color);
    margin: 0;
}

.clownfruit-footer-btn {
    display: inline-block;
    background-color: var(--star-button-background-color);
    color: var(--star-button-text-color);
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
}

.clownfruit-footer-btn:hover {
    background-color: var(--star-button-hover-background-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--star-box-shadow-color);
    color: var(--star-button-text-color);
    text-decoration: none;
}

.orange-btn {
    background-color: var(--star-button-background-color);
    color: var(--star-button-text-color);
}

.orange-btn:hover {
    background-color: var(--star-button-background-color);
    color: var(--star-button-text-color);
}

/* Mobil uyumluluk iÃƒÆ'Ã†â€™Ãƒâ€šÃ‚Â§in medya sorgularÃƒÆ'Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â± */
@media (max-width: 1200px) {
    .clownfruit-title {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .col-md-4 {
        width: 50%;
    }
    
    .clownfruit-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .col-md-4 {
        width: 100%;
    }
    
    .clownfruit-title {
        font-size: 28px;
    }
    
    .clownfruit-subtitle {
        font-size: 16px;
    }
    
    .clownfruit-date {
        font-size: 14px;
    }
    
    .clownfruit-footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .clownfruit-title {
        font-size: 24px;
    }
}

.orders-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.order-card {
    background-color: var(--star-card-background-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--star-box-shadow-color);
    transition: transform 0.3s ease;
}

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

.order-header {
    display: flex;
    justify-content: space-between;
        align-items: center;
    padding: 15px;
    background-color: var(--star-bonus-card-image-color);
    border-bottom: 1px solid var(--star-border-color);
}

.order-id {
    font-weight: bold;
    color: var(--star-onemli-text-color);
}

.order-date {
    color: #aaa;
    font-size: 0.9rem;
}

.status-badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.status-badge.pending {
    background-color: var(--star-button-background-color);
    color: var(--star-button-text-color);
}

.status-badge.completed {
    background-color: #28a745;
    color: #fff;
}

.status-badge.cancelled {
    background-color: #dc3545;
    color: #fff;
}

.order-content {
    padding: 20px;
}

.order-product {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.product-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
}

.product-info {
    flex: 1;
}

.product-info h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--star-onemli-text-color);
    font-weight: bold;
}

.product-price img {
    width: 20px;
    height: 20px;
}

.order-note {
    background-color: var(--star-navbar-bg);
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.order-note h4 {
    margin: 0 0 10px 0;
    font-size: 1rem;
    color: var(--star-onemli-text-color);
}

.order-note p {
    margin: 0;
    color: #ddd;
}

.order-completion {
    margin-top: 15px;
    color: #28a745;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

@media (max-width: 768px) {
    .order-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .order-status {
        align-self: flex-end;
    }
    
    .order-product {
        flex-direction: column;
    }
    
    .product-image {
    width: 100%;
        height: 120px;
    }
    
    .product-image img {
        max-width: 80px;
        max-height: 80px;
    }
}

/* Pop-up Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    position: relative;
    max-width: 500px;
    width: 90%;
    background-color: var(--dark-bg-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    animation: popupFadeIn 0.5s forwards;
    border: 2px solid var(--primary-color);
}

@keyframes popupFadeIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.popup-content {
    position: relative;
}

.popup-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    border: none;
    color: #fff;
    font-size: 16px;
    transition: background-color 0.2s ease;
}

.popup-close:hover {
    background-color: var(--hover-color);
}

.popup-button {
}

.popup-button:hover {
    background-color: var(--hover-color);
}

/* Mobil TasarÃƒÆ'Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â±m ÃƒÆ'Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â°ÃƒÆ'Ã†â€™Ãƒâ€šÃ‚Â§in Uyarlamalar */
@media (max-width: 768px) {
    .popup-container {
        max-width: 90%;
    }
    
    .popup-button {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* Popup Stilleri */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
        width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
        justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    background-color: var(--star-card-background-color);
    border-radius: 15px;
    width: 90%;
    max-width: 450px;
    max-height: 85vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.popup-overlay.active .popup-container {
    transform: scale(1);
}

.popup-header {
    background-color: var(--star-box-shadow-color);
    color: var(--star-normal-text-color);
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    border-bottom: 1px solid var(--star-onemsiz-text-color);
    letter-spacing: 1px;
}

.popup-content {
    padding: 10px;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--star-card-background-color);
    overflow: hidden;
}

.popup-image {
    max-width: 100%;
    max-height: 400px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    object-fit: fill;
    filter: brightness(1.1);
    z-index: 2;
}

.popup-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: var(--star-box-shadow-color);
    border-top: 1px solid var(--star-onemsiz-text-color);
}

.popup-logo {
    height: 40px;
    overflow: hidden;
}

.popup-logo img {
    height: 100%;
    filter: brightness(1.2);
    transition: all 0.3s ease;
}

.popup-button {
    background-color: var(--star-button-background-color);
    color: var(--star-button-text-color);
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 0 10px var(--star-onemli-text-color);
    position: absolute;
    left: 60%;
    transform: translateX(50%);
    transition: background-color 0.2s ease;
}

.popup-button:hover {
    background-color: var(--star-button-hover-background-color);
    
    box-shadow: 0 0 15px var(--star-box-shadow-color);
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-color: var(--star-button-background-color);
    border: none;
    border-radius: 50%;
    color: var(--star-button-text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background-color: rgba(255, 0, 0, 0.7);
    transform: rotate(90deg);
}

.popup-time-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--star-border-color);
    overflow: hidden;
}

.time-bar-fill {
    height: 100%;
    background-color: var(--star-button-background-color);
    width: 0%;
}

/* Baloncuk AnimasyonlarÃƒÆ'Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â± */
.bubbles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.bubble {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    opacity: 0;
    z-index: 1;
    transform: translate(0, 0);
}

@keyframes bubbleUp {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0);
    }
    20% {
        opacity: 0.8;
        transform: translate(calc(var(--tx) * 0.2), calc(var(--ty) * 0.2)) scale(1);
    }
    80% {
        opacity: 0.6;
        transform: translate(calc(var(--tx) * 0.8), calc(var(--ty) * 0.8)) scale(0.8);
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx), var(--ty)) scale(0);
    }
}

/* Mobil Uyumluluk iÃƒÆ'Ã†â€™Ãƒâ€šÃ‚Â§in Popup */
@media (max-width: 768px) {
    .popup-container {
        width: 95%;
        max-width: 400px;
    }
    
    .popup-header {
        padding: 12px 15px;
        font-size: 16px;
    }
    
    .popup-content {
        padding: 15px;
    }
    
    .popup-image {
        max-height: 250px;
    }
    
    .popup-footer {
        padding: 12px 15px;
    }
    
    .popup-logo {
        height: 35px;
    }
    
    .popup-button {
        padding: 8px 16px;
    font-size: 14px;
}
}

@media (max-width: 480px) {
    .popup-container {
        width: 95%;
        max-width: 350px;
    }
    
    .popup-header {
        padding: 10px;
        font-size: 15px;
    }
    
    .popup-content {
        padding: 12px;
    }
    
    .popup-image {
        max-height: 400px;
    }
    
    .popup-footer {
        padding: 10px;
    }
    
    .popup-logo {
        height: 30px;
    }
    
    .popup-button {
        padding: 7px 14px;
        font-size: 13px;
    }
    
    .popup-close {
        width: 25px;
        height: 25px;
        top: 8px;
        right: 8px;
    }
}

/* Şifremi Unuttum Modal Stili */
.forgot-password-link {
    font-size: 14px;
    color: var(--star-onemli-text-color);
    display: block;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 5px;
    text-decoration: none;
}

.forgot-password-link:hover {
    text-decoration: underline;
    color: var(--star-onemli-text-color);
}

.reset-btn {
    background-color: var(--primary-button-bg);
    color: var(--primary-button-text);
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s;
    width: 100%;
}

.reset-btn:hover {
    background-color: var(--primary-button-hover-bg);
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .forgot-password-modal .modal-dialog {
        margin: 10px;
    }
}



/* Kura Kartı Tasarımı */
.kura-card {
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid var(--star-border-color);
    box-shadow: 0 8px 20px var(--star-box-shadow-color);
    background-color: var(--star-card-background-color);
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
}

.kura-card:hover {
    box-shadow: 0 15px 30px var(--star-box-shadow-color);
}

.kura-card .card-header {
    background: linear-gradient(135deg, var(--star-card-background-color), transparent);
    border-bottom: 1px solid var(--star-border-color);
    font-weight: 700;
    color: #ffffff;
    padding: 15px 20px;
}

.kura-card .card-body {
    padding: 20px;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.kura-item {
    position: relative;
    transition: all 0.3s ease;
    background: linear-gradient(135deg,var(--star-card-background-color), var(--star-border-color));
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.kura-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: var(--star-button-background-color);
}

.kura-item .card-body {
    padding: 20px;
}

.kura-item .card-title {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--star-onemli-text-color);
    font-size: 1.25rem;
}

.kura-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.kura-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--star-normal-text-color);
    font-size: 0.9rem;
}

.kura-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}
.kura-item .card-footer {
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
}

.kura-item .card-footer small {
    display: flex;
    align-items: center;
}

.kura-item .card-footer small i {
    margin-right: 5px;
    color: #ffdd57;
}

.kura-item .card-footer small span {
    color: white;
    font-weight: 500;
}   

/* Market Buton Stilği */
.btn-market-go {
    background: linear-gradient(135deg, var(--star-button-background-color), var(--star-button-hover-background-color));
    color: var(--star-button-text-color);
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.btn-market-go::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-market-go:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    color: var(--star-button-text-color);
    text-decoration: none;
}

.btn-market-go:hover::before {
    left: 100%;
}

.btn-market-go:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.btn-market-go i {
    transition: transform 0.3s ease;
}

.btn-market-go:hover i:last-child {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .btn-market-go {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Global SweetAlert2 Tema Özelleştirmesi */
.swal2-popup {
    background: linear-gradient(135deg, var(--star-sidebar-button-background-color), var(--dark-bg)) !important;
    color: var(--star-normal-text-color) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 15px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

.swal2-title {
    color: var(--star-normal-text-color) !important;
    font-family: "Poppins", sans-serif !important;
    font-weight: 600 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.swal2-html-container {
    color: var(--star-onemsiz-text-color) !important;
    font-family: "Poppins", sans-serif !important;
    font-weight: 400 !important;
}

.swal2-confirm {
    background: linear-gradient(135deg, var(--star-button-background-color), var(--star-button-hover-background-color)) !important;
    color: var(--star-button-text-color) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 12px 25px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-size: 14px !important;
}

.swal2-confirm:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
}

.swal2-cancel {
    background: rgba(255, 255, 255, 0.1) !important;
    color: var(--star-normal-text-color) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50px !important;
    padding: 12px 25px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-size: 14px !important;
}

.swal2-cancel:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1) !important;
}

.swal2-deny {
    background: linear-gradient(135deg, #dc3545, #c82333) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 12px 25px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-size: 14px !important;
}

.swal2-deny:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4) !important;
}

.swal2-icon {
    border: none !important;
    margin: 20px auto !important;
}

.swal2-icon.swal2-question {
    border-color: var(--star-button-background-color) !important;
    color: var(--star-button-background-color) !important;
}

.swal2-icon.swal2-success {
    border-color: #28a745 !important;
    color: #28a745 !important;
}

.swal2-icon.swal2-error {
    border-color: #dc3545 !important;
    color: #dc3545 !important;
}

.swal2-icon.swal2-warning {
    border-color: #ffc107 !important;
    color: #ffc107 !important;
}

.swal2-icon.swal2-info {
    border-color: #17a2b8 !important;
    color: #17a2b8 !important;
}

/* SweetAlert2 Loading Animation */
.swal2-loading .swal2-confirm {
    background: linear-gradient(135deg, var(--star-button-background-color), var(--star-button-hover-background-color)) !important;
}

/* SweetAlert2 Close Button */
.swal2-close {
    color: var(--star-onemsiz-text-color) !important;
    font-size: 24px !important;
    transition: all 0.3s ease !important;
}

.swal2-close:hover {
    color: var(--star-button-background-color) !important;
    transform: scale(1.1) !important;
}

/* SweetAlert2 Input Fields */
.swal2-input, .swal2-textarea {
    background: rgba(255, 255, 255, 0.1) !important;
    color: var(--star-normal-text-color) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px !important;
    padding: 10px 15px !important;
    font-family: "Poppins", sans-serif !important;
}

.swal2-input:focus, .swal2-textarea:focus {
    border-color: var(--star-button-background-color) !important;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.3) !important;
    outline: none !important;
}

.swal2-input::placeholder, .swal2-textarea::placeholder {
    color: var(--star-onemsiz-text-color) !important;
}

/* SweetAlert2 Progress Bar */
.swal2-progress-bar {
    background: var(--star-button-background-color) !important;
}

/* SweetAlert2 Toast Style */
.swal2-toast {
    background: var(--star-sidebar-button-background-color) !important;
    color: var(--star-normal-text-color) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
}

/* SweetAlert2 Animation */
.swal2-show {
    animation: swal2-show-custom 0.3s ease-out !important;
}

@keyframes swal2-show-custom {
    0% {
        transform: scale(0.7) translateY(50px);
        opacity: 0;
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* SweetAlert2 Mobile Responsive */
@media (max-width: 768px) {
    .swal2-popup {
        width: 90% !important;
        margin: 20px !important;
    }
    
    .swal2-title {
        font-size: 20px !important;
    }
    
    .swal2-confirm, .swal2-cancel, .swal2-deny {
        padding: 10px 20px !important;
        font-size: 13px !important;
    }
}

/* Kod Gir Modal Özel Tasarımı */
.kod-gir-modal {
    background: linear-gradient(135deg, var(--star-sidebar-button-background-color), var(--dark-bg)) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    overflow: hidden !important;
}

.kod-gir-header {
    background: linear-gradient(135deg, var(--star-button-background-color), var(--star-button-hover-background-color)) !important;
    border-bottom: none !important;
    padding: 25px 30px 20px !important;
    position: relative !important;
    overflow: hidden !important;
}

.kod-gir-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: kod-gir-shine 3s linear infinite;
}

@keyframes kod-gir-shine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.kod-gir-icon {
    position: absolute;
    top: 15px;
    right: 80px;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3), rgba(255, 255, 255, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffd700;
    animation: kod-gir-gem-sparkle 2s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    border: 2px solid rgba(255, 215, 0, 0.5);
}

@keyframes kod-gir-gem-sparkle {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.4), 0 0 25px rgba(255, 215, 0, 0.2);
    }
    25% { 
        transform: scale(1.05) rotate(5deg); 
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.3);
    }
    50% { 
        transform: scale(1.1) rotate(0deg); 
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.8), 0 0 35px rgba(255, 215, 0, 0.4);
    }
    75% { 
        transform: scale(1.05) rotate(-5deg); 
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.3);
    }
}

.kod-gir-title-container {
    position: relative;
    z-index: 2;
}

.kod-gir-title-container .modal-title {
    color: var(--star-button-text-color) !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    margin-bottom: 5px !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.kod-gir-subtitle {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 14px !important;
    margin: 0 !important;
    font-weight: 400 !important;
}

.kod-gir-close {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    width: 35px !important;
    height: 35px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    z-index: 3 !important;
}

.kod-gir-close:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
}

.kod-gir-close:hover .kod-gir-close-icon {
    transform: rotate(90deg) !important;
}

.kod-gir-close-icon {
    transition: all 0.3s ease !important;
    width: 14px !important;
    height: 14px !important;
}

.kod-gir-close:active .kod-gir-close-icon {
    transform: rotate(180deg) scale(0.9) !important;
}

.kod-gir-body {
    padding: 30px !important;
    background: transparent !important;
}

.kod-gir-input-container {
    position: relative;
}

.kod-gir-label {
    color: var(--star-normal-text-color) !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    margin-bottom: 15px !important;
    display: block !important;
}

.kod-gir-input-wrapper {
    position: relative;
    margin-bottom: 15px;
}

.kod-gir-input {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--star-normal-text-color) !important;
    border-radius: 15px !important;
    padding: 15px 50px 15px 20px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(5px) !important;
}

.kod-gir-input:focus {
    border-color: var(--star-button-background-color) !important;
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.3) !important;
    background: rgba(255, 255, 255, 0.15) !important;
    outline: none !important;
    transform: scale(1.02) !important;
}

.kod-gir-input::placeholder {
    color: var(--star-onemsiz-text-color) !important;
    font-weight: 400 !important;
    letter-spacing: 0.5px !important;
}

.kod-gir-input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--star-onemsiz-text-color);
    font-size: 18px;
    transition: all 0.3s ease;
}

.kod-gir-input:focus + .kod-gir-input-icon {
    color: var(--star-button-background-color);
    transform: translateY(-50%) scale(1.1);
}

.kod-gir-hint {
    color: var(--star-onemsiz-text-color) !important;
    font-size: 13px !important;
    padding: 10px 15px !important;
    background: rgba(255, 193, 7, 0.1) !important;
    border-radius: 8px !important;
    border-left: 3px solid #ffc107 !important;
}

.kod-gir-footer {
    padding: 20px 30px 30px !important;
    border-top: none !important;
    background: transparent !important;
    display: flex !important;
    gap: 15px !important;
    justify-content: flex-end !important;
}

.kod-gir-cancel {
    background: rgba(255, 255, 255, 0.1) !important;
    color: var(--star-normal-text-color) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50px !important;
    padding: 12px 25px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-size: 14px !important;
}

.kod-gir-cancel:hover {
    background: rgba(220, 53, 69, 0.8) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3) !important;
}

.kod-gir-submit {
    background: linear-gradient(135deg, var(--star-button-background-color), var(--star-button-hover-background-color)) !important;
    color: var(--star-button-text-color) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 12px 25px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-size: 14px !important;
    position: relative !important;
    overflow: hidden !important;
}

.kod-gir-submit:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4) !important;
}

.kod-gir-submit:active {
    transform: translateY(0) !important;
}

.kod-gir-submit-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.kod-gir-submit.loading .kod-gir-submit-loading {
    opacity: 1;
}

.kod-gir-submit.loading {
    color: transparent !important;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .kod-gir-modal {
        margin: 15px !important;
        border-radius: 15px !important;
    }
    
    .kod-gir-header {
        padding: 20px 20px 15px !important;
    }
    
    .kod-gir-title-container .modal-title {
        font-size: 20px !important;
    }
    
    .kod-gir-body {
        padding: 20px !important;
    }
    
    .kod-gir-footer {
        padding: 15px 20px 20px !important;
        flex-direction: column !important;
    }
    
    .kod-gir-cancel, .kod-gir-submit {
        width: 100% !important;
        justify-content: center !important;
    }
    
    .kod-gir-input {
        padding: 12px 45px 12px 15px !important;
        font-size: 14px !important;
    }
}

/* Share Win Modal Özel Tasarımı */
.share-win-modal {
    background: linear-gradient(135deg, var(--star-sidebar-button-background-color), var(--dark-bg)) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    overflow: hidden !important;
}

.share-win-header {
    background: linear-gradient(135deg, var(--star-button-background-color), var(--star-button-hover-background-color)) !important;
    border-bottom: none !important;
    padding: 25px 30px 20px !important;
    position: relative !important;
    overflow: hidden !important;
}

.share-win-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: share-win-shine 3s linear infinite;
}

@keyframes share-win-shine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.share-win-icon {
    position: absolute;
    top: 15px;
    right: 80px;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3), rgba(255, 255, 255, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffd700;
    animation: share-win-trophy-bounce 2s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    border: 2px solid rgba(255, 215, 0, 0.5);
}

@keyframes share-win-trophy-bounce {
    0%, 100% { 
        transform: translateY(0) scale(1); 
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    }
    50% { 
        transform: translateY(-5px) scale(1.1); 
        box-shadow: 0 5px 20px rgba(255, 215, 0, 0.6);
    }
}

.share-win-title-container {
    position: relative;
    z-index: 2;
}

.share-win-title-container .modal-title {
    color: #ffffff !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    margin-bottom: 5px !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.share-win-subtitle {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 14px !important;
    margin: 0 !important;
    font-weight: 400 !important;
}

.share-win-close {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    width: 35px !important;
    height: 35px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    z-index: 3 !important;
}

.share-win-close:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
}

.share-win-close:hover .share-win-close-icon {
    transform: rotate(90deg) !important;
}

.share-win-close-icon {
    transition: all 0.3s ease !important;
    width: 14px !important;
    height: 14px !important;
}

.share-win-close:active .share-win-close-icon {
    transform: rotate(180deg) scale(0.9) !important;
}

.share-win-body {
    padding: 30px !important;
    background: transparent !important;
}

.share-win-form-group {
    margin-bottom: 25px !important;
    position: relative;
}

.share-win-label {
    color: var(--star-normal-text-color) !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    margin-bottom: 10px !important;
    display: block !important;
}

.share-win-input-wrapper {
    position: relative;
    margin-bottom: 10px;
}

.share-win-input {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--star-normal-text-color) !important;
    border-radius: 15px !important;
    padding: 15px 50px 15px 20px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(5px) !important;
}

.share-win-input:focus {
    border-color: var(--star-button-background-color) !important;
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.3) !important;
    background: rgba(255, 255, 255, 0.15) !important;
    outline: none !important;
    transform: scale(1.02) !important;
}

/* Oyun Adı Input Enhanced Focus */
#game_name:focus {
    border-color: #28a745 !important;
    box-shadow: 0 0 20px rgba(40, 167, 69, 0.4) !important;
    background: rgba(255, 255, 255, 0.2) !important;
    transform: scale(1.03) !important;
}

/* Bahis Miktarı Input Enhanced Focus */
#bet_amount:focus {
    border-color: #fd7e14 !important;
    box-shadow: 0 0 20px rgba(253, 126, 20, 0.4) !important;
    background: rgba(255, 255, 255, 0.2) !important;
    transform: scale(1.03) !important;
}

/* Video Linki Input Enhanced Focus */
#video_link:focus {
    border-color: #dc3545 !important;
    box-shadow: 0 0 20px rgba(220, 53, 69, 0.4) !important;
    background: rgba(255, 255, 255, 0.2) !important;
    transform: scale(1.03) !important;
}

/* Enhanced Icon Animations for Other Inputs */
#game_name:focus + .share-win-input-icon {
    color: #28a745 !important;
    transform: translateY(-50%) scale(1.1) !important;
}

#bet_amount:focus + .share-win-input-icon .currency-symbol {
    color: #fd7e14 !important;
}

#video_link:focus + .share-win-input-icon {
    color: #dc3545 !important;
    transform: translateY(-50%) scale(1.1) !important;
}

.share-win-input::placeholder {
    color: var(--star-onemsiz-text-color) !important;
    font-weight: 400 !important;
}

.win-amount-input:focus {
    border-color: #ffd700 !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3) !important;
}

.share-win-input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--star-onemsiz-text-color);
    font-size: 16px;
    transition: all 0.3s ease;
}

.currency-symbol {
    font-weight: 600;
    font-size: 18px;
    color: var(--star-onemsiz-text-color);
}

.share-win-input:focus + .share-win-input-icon {
    color: var(--star-button-background-color);
    transform: translateY(-50%) scale(1.1);
}

.win-amount-input:focus + .share-win-input-icon .currency-symbol {
    color: #ffd700;
}

.share-win-hint {
    color: var(--star-onemsiz-text-color) !important;
    font-size: 13px !important;
    padding: 10px 15px !important;
    background: rgba(23, 162, 184, 0.1) !important;
    border-radius: 8px !important;
    border-left: 3px solid #17a2b8 !important;
}

.share-win-footer {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.share-win-submit {
    background: linear-gradient(135deg, var(--star-button-background-color), var(--star-button-hover-background-color)) !important;
    color: var(--star-button-text-color) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 15px 35px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-size: 14px !important;
    position: relative !important;
    overflow: hidden !important;
    min-width: 150px !important;
}

.share-win-submit:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
}

.share-win-submit:active {
    transform: translateY(0) !important;
}

.share-win-submit-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.share-win-submit.loading .share-win-submit-loading {
    opacity: 1;
}

.share-win-submit.loading {
    color: transparent !important;
}

/* Login Warning Style */
.share-win-login-warning {
    display: flex;
    align-items: center;
    padding: 25px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 15px;
    border-left: 4px solid #ffc107;
}

.warning-icon {
    font-size: 30px;
    color: #ffc107;
    margin-right: 20px;
    animation: warning-pulse 2s ease-in-out infinite;
}

@keyframes warning-pulse {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.warning-content h4 {
    color: var(--star-normal-text-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.warning-content p {
    color: var(--star-onemsiz-text-color);
    margin-bottom: 15px;
}

.share-win-login-btn {
    background: linear-gradient(135deg, var(--star-button-background-color), var(--star-button-hover-background-color)) !important;
    color: var(--star-button-text-color) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 10px 25px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-size: 13px !important;
}

.share-win-login-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3) !important;
}

/* Share Win Modal Responsive */
@media (max-width: 768px) {
    .share-win-modal {
        margin: 15px !important;
        border-radius: 15px !important;
    }
    
    .share-win-header {
        padding: 20px 20px 15px !important;
    }
    
    .share-win-title-container .modal-title {
        font-size: 20px !important;
    }
    
    .share-win-body {
        padding: 20px !important;
    }
    
    .share-win-form-group {
        margin-bottom: 20px !important;
    }
    
    .share-win-input {
        padding: 12px 45px 12px 15px !important;
        font-size: 14px !important;
    }
    
    .share-win-submit {
        width: 100% !important;
        padding: 12px 25px !important;
    }
    
    .share-win-login-warning {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .warning-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

.top-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 100%;
    margin: 40px 0;
    padding: 0 20px;
}

.top-feature-card {
    background: linear-gradient(135deg, var(--star-bonus-card-background-color), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.top-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.top-feature-card:hover::before {
    left: 100%;
}

.top-feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--star-button-background-color);
}

.top-feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--star-button-background-color), rgba(255, 255, 255, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.top-feature-card:hover .top-feature-icon {
    transform: rotateY(180deg);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.top-feature-icon i {
    font-size: 28px;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.top-feature-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.top-feature-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

.top-feature-link {
    text-decoration: none;
    display: block;
}

.top-feature-link:hover {
    text-decoration: none;
}

/* Mobil feature kartları */
.mobile-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 0;
    padding: 0 15px;
}

.mobile-feature-card {
    background: linear-gradient(135deg, var(--star-bonus-card-background-color), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.mobile-feature-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--star-button-background-color);
}

.mobile-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--star-button-background-color), rgba(255, 255, 255, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.mobile-feature-icon i {
    font-size: 20px;
    color: white;
}

.mobile-feature-text h3 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.mobile-feature-text p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.mobile-feature-link {
    text-decoration: none;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .top-features {
        display: none;
    }
    
    .mobile-features {
        display: block;
    }
}

@media (min-width: 769px) {
    .mobile-features {
        display: none;
    }
}

@media (max-width: 1200px) {
    .top-features {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .top-feature-card {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .mobile-feature-card {
        padding: 15px;
        border-radius: 12px;
    }
    
    .mobile-feature-icon {
        width: 45px;
        height: 45px;
        margin-right: 12px;
    }
    
    .mobile-feature-text h3 {
        font-size: 15px;
    }
}