:root {
    --primary-color: #5cd3b9;
    --secondary-color: #2a9d8f;
    --background-color: #0f1824;
    --card-background: rgba(28, 36, 48, 0.9);
    --text-color: #ffffff;
    --neon-shadow: 0 0 10px rgba(92, 211, 185, 0.5),
                   0 0 20px rgba(92, 211, 185, 0.3),
                   0 0 30px rgba(92, 211, 185, 0.1);
    --card-shadow: 0 8px 32px 0 rgba(92, 211, 185, 0.1);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #0f1824 75%, #0e1520 100%);
    position: relative;
    overflow-x: hidden;
    min-height: 100vh;
    color: var(--text-color);
    overflow-y: auto !important;
    padding-bottom: 50px;
}

/* Background optimized - animations removed for performance */

/* Animations removed for performance optimization */

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 1rem;
    position: relative;
    overflow: visible !important;
}

.gif-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.5rem 0;
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    background: none;
}

.gif-banner a {
    display: block;
    width: 100%;
    max-width: 1000px;
    text-align: center;
}

.gif-banner img {
    width: 100vw;
    max-width: 1000px;
    min-width: 0;
    height: 50px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Site Header Styles - Full Width Navbar */
.site-header {
    background: linear-gradient(135deg, #1a2332 0%, #253447 50%, #1a2332 100%);
    padding: 0;
    margin-bottom: 0.3rem;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(92, 211, 185, 0.2);
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
    height: 70px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.navbar > * {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    position: absolute;
    left: 2rem;
}

.logo .site-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, #5cd3b9, #4fd1c7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(92, 211, 185, 0.3);
    line-height: 1;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
}

.nav-item {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-item:hover {
    color: #5cd3b9;
    background: rgba(92, 211, 185, 0.1);
    transform: translateY(-1px);
}

/* Social Section - Link bölümünün altında */
.social-section {
    margin: 2rem 0;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.social-btn {
    display: inline-block;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    margin: 0 0.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.social-btn.telegram {
    background: rgba(34, 158, 217, 0.1);
    border-color: rgba(34, 158, 217, 0.3);
    color: #229ED9;
}

.social-btn.telegram:hover {
    background: rgba(34, 158, 217, 0.2);
    border-color: #229ED9;
    color: #fff;
    transform: translateY(-2px);
}

.social-btn.instagram {
    background: rgba(228, 64, 95, 0.1);
    border-color: rgba(228, 64, 95, 0.3);
    color: #E4405F;
}

.social-btn.instagram:hover {
    background: rgba(228, 64, 95, 0.2);
    border-color: #E4405F;
    color: #fff;
    transform: translateY(-2px);
}

.social-btn span {
    font-size: inherit;
    font-weight: inherit;
}

/* Mobile Menu */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-item {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #5cd3b9;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
        height: auto;
        position: relative;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        position: static;
        order: 1;
        align-self: center;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 2;
        align-self: center;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #1a2332 0%, #253447 100%);
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        border-top: 1px solid rgba(92, 211, 185, 0.2);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-item {
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
    text-align: center;
        border-radius: 8px;
        margin-bottom: 0.3rem;
    }
    
    .logo .site-title {
        font-size: 1.6rem;
    }
    
    .header-actions {
        position: static;
        transform: none;
    }
    
    .social-btn {
        width: 45px;
        height: 45px;
    }
    
    .social-btn i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.8rem;
    }
    
    .logo .site-title {
        font-size: 1.4rem;
    }
    
    .nav-item {
        font-size: 0.85rem;
        padding: 0.7rem 0.8rem;
    }
    
    .social-btn {
        width: 40px;
        height: 40px;
    }
    
    .social-btn i {
        font-size: 1.1rem;
    }
    
    .social-links {
        gap: 0.8rem;
    }
}

.avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    box-shadow: var(--neon-shadow);
    animation: pulse 2s infinite;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.avatar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(92, 211, 185, 0.2) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: all 0.4s ease;
}

.avatar:hover {
    transform: scale(1.05);
}

.avatar:hover::after {
    opacity: 1;
}

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

h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.profile-section p {
    color: #666;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(
        circle,
        rgba(92, 211, 185, 0.2) 0%,
        transparent 70%
    );
    transition: all 0.4s ease;
}

.social-links a:hover {
    transform: scale(1.2) rotate(8deg);
    color: var(--primary-color);
}

.social-links a:hover::before {
    top: -50%;
    left: -50%;
}

/* Tam Genişlik Otomatik Kayan Carousel */
.links-section {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 90px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, 
        rgba(26, 35, 50, 0.2) 0%, 
        rgba(37, 52, 71, 0.2) 100%);
    margin: 1.5rem -50vw;
    padding: 0 1rem;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    animation: slideLeft 40s linear infinite;
    white-space: nowrap;
    width: max-content;
}

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

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

/* Orta Boy Link Kartları */
.link-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.9rem 1.3rem;
    border-radius: 12px;
    background: linear-gradient(135deg, 
        rgba(26, 35, 50, 0.95) 0%, 
        rgba(37, 52, 71, 0.95) 100%);
    backdrop-filter: blur(15px);
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: 2px solid rgba(92, 211, 185, 0.4);
    overflow: hidden;
    flex-shrink: 0;
    width: 320px;
    height: 70px;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(92, 211, 185, 0.1), 
        transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

/* Right arrow icon removed */

/* Link başlıkları için stil */
.link-card .content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
    gap: 2px;
}

.link-card .site-name {
    color: #fff !important;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    text-align: center;
}

.link-card .description {
    font-size: 0.85rem;
    color: #fff;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.1;
    text-align: center;
}

/* Tüm link kartları için hover efekti */

.link-card:hover::before {
    left: 100%;
}

/* Arrow hover effect removed */

.link-card:hover {
    border-color: rgba(92, 211, 185, 0.6);
    background: linear-gradient(135deg, 
        rgba(26, 35, 50, 0.95) 0%, 
        rgba(37, 52, 71, 0.95) 100%);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(92, 211, 185, 0.3),
        0 0 20px rgba(92, 211, 185, 0.2);
}

/* Mobil Responsive Carousel */
@media (max-width: 768px) {
    .links-section {
        height: 80px;
        margin: 1.2rem -50vw;
        padding: 0 0.8rem;
    }
    
    .link-card {
        width: 280px;
        height: 65px;
        padding: 0.8rem 1.2rem;
    }
    
    .link-card .site-name {
        font-size: 0.85rem;
    }
    
    .link-card .description {
        font-size: 0.75rem;
    }
    
    .link-card::after {
        font-size: 0.9rem;
        top: 8px;
        right: 12px;
    }
    
    .carousel-track {
        gap: 1.3rem;
        animation: slideLeft 35s linear infinite;
    }
}

@media (max-width: 480px) {
    .links-section {
        height: 75px;
        padding: 0 0.5rem;
    }
    
    .link-card {
        width: 250px;
        height: 60px;
        padding: 0.7rem 1rem;
    }
    
    .link-card .site-name {
        font-size: 0.8rem;
    }
    
    .link-card .description {
        font-size: 0.7rem;
    }
    
    .link-card::after {
        font-size: 0.8rem;
        top: 6px;
        right: 10px;
    }
    
    .carousel-track {
        gap: 1rem;
        animation: slideLeft 30s linear infinite;
    }
}

/* Admin panel butonları için stil */
.link-item button {
    padding: 0.5rem 1rem;
    margin: 0 0.2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

.link-item button:nth-child(1) { background: #4a90e2; color: white; }
.link-item button:nth-child(2) { background: #e74c3c; color: white; }
.link-item button:nth-child(3) { background: #2ecc71; color: white; }
.link-item button:nth-child(4) { background: #95a5a6; color: white; }

/* Loading Container Styles */
.loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--background-color);
    z-index: 1000;
}

.loading-container p {
    margin-top: 1rem;
    color: var(--text-color);
    font-size: 1.1rem;
}

/* Loading animasyonu */
.loading {
    width: 50px;
    height: 50px;
    border: 3px solid transparent;
    border-top: 3px solid var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 15px rgba(153, 40, 26, 0.5);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .modal-content {
        margin: 5% auto;
        width: 95%;
    }
    
    .sponsor-row {
        gap: 0.8rem;
    }
    
    .sponsor-card {
        padding: 0.8rem;
    }
    
    .link-card {
        padding: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .link-card .title {
        font-size: 1rem;
    }
    
    .link-card i {
        font-size: 1.3rem;
    }
    
    /* Mobilde touch feedback */
    .link-card:active {
        transform: scale(0.98);
        transition: transform 0.1s;
    }
}

@media (max-width: 480px) {
    .sponsor-grid {
        padding: 5px;
        max-width: 380px;
    }
    
    .sponsor-row {
        grid-template-columns: repeat(4, 95px);
        gap: 0.7rem;
        justify-content: center;
    }
    
    .sponsor-row.last-row {
        grid-template-columns: 95px;
        gap: 0.7rem;
    }
    
    .sponsor-card {
        width: 95px;
        height: 55px;
        padding: 0.35rem;
    }

    .sponsor-card img {
        max-width: 98%;
        max-height: 98%;
    }
    

    
    .avatar {
        width: 100px;
        height: 100px;
    }
}

/* Eklenecek CSS */

/* Screen Reader Only sınıfı */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Klavye navigasyonu için focus stilleri */
a:focus,
button:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Print Media Query */
@media print {
    body {
        background: none;
        color: #000;
    }
    
    .container {
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    
    a {
        text-decoration: none;
        color: #000;
    }
    
    a[href]:after {
        content: " (" attr(href) ")";
    }
}

/* Masaüstü için sponsor grid - Büyütülmüş */
.sponsor-grid {
    position: relative;
    padding: 12px;
    width: 100%;
    max-width: 1000px;
    margin: 1rem auto;
}

.sponsor-row {
    display: grid;
    grid-template-columns: repeat(4, 180px);
    gap: 1.2rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.sponsor-row.last-row {
    display: grid;
    grid-template-columns: repeat(3, 180px);
    gap: 1.2rem;
    justify-content: center;
    margin: 0 auto;
}

.sponsor-card {
    width: 180px;
    height: 90px;
    background: rgba(20, 30, 40, 0.4);
    border-radius: 12px;
    padding: 0.8rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.sponsor-card img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .sponsor-grid {
        width: 100%;
        padding: 10px;
        max-width: 680px;
    }

    .sponsor-row {
        grid-template-columns: repeat(4, 140px);
        gap: 1rem;
        justify-content: center;
    }
    
    .sponsor-row.last-row {
        grid-template-columns: repeat(3, 140px);
        gap: 1rem;
        justify-content: center;
    }

    .sponsor-card {
        width: 140px;
        height: 75px;
        padding: 0.6rem;
    }
}

@media (max-width: 480px) {
    .sponsor-grid {
        padding: 4px;
        max-width: calc(100vw - 16px);
        width: 100%;
        margin: 1rem 8px;
        box-sizing: border-box;
    }
    
    .sponsor-row {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 4px;
        justify-content: center;
        margin: 0 auto 8px auto;
        width: 100%;
        box-sizing: border-box;
    }
    
    .sponsor-row.last-row {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 4px;
        justify-content: center;
        margin: 0 auto;
        width: 100%;
        box-sizing: border-box;
    }

    .sponsor-card {
        width: 100%;
        height: 55px;
        padding: 0.1rem;
        min-width: 0;
        box-sizing: border-box;
    }

    .sponsor-card img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }
}

/* Sponsor kartları için stil - Optimized */
.sponsor-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease;
    background: rgba(28, 36, 48, 0.8);
    border: 1px solid rgba(92, 211, 185, 0.1);
    padding: 0.6rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    aspect-ratio: 16/8;
}

.sponsor-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(92, 211, 185, 0.4);
}

.sponsor-card:active {
    transform: translateY(2px);
}

.sponsor-card img {
    position: relative;
    z-index: 1;
    width: 85%;
    height: 85%;
    object-fit: contain;
    transition: transform 0.2s ease;
}

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

/* Başlık stili */
.section-title {
    color: var(--text-color);
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(92, 211, 185, 0.3);
}

/* Güvenilir Siteler - Kompakt Başlık */
.bio-section {
    text-align: center;
    margin: 0.3rem auto 1rem auto;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
    position: relative;
    overflow: visible;
    width: 100%;
    display: flex;
    justify-content: center;
}

.bio-section p {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, 
        rgba(26, 35, 50, 0.9) 0%, 
        rgba(37, 52, 71, 0.9) 100%);
    border: 2px solid rgba(92, 211, 185, 0.3);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.bio-section p::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(92, 211, 185, 0.1), 
        transparent);
    transition: left 0.6s ease;
}

.bio-section p:hover::before {
    left: 100%;
}

.bio-section p:hover {
    border-color: rgba(92, 211, 185, 0.6);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

/* Logo stili */
.logo-container {
    text-align: center;
    margin-bottom: 2rem;
}

.logo-container img {
    max-width: 150px;
    filter: drop-shadow(0 0 10px rgba(92, 211, 185, 0.5));
}

/* Kar animasyonu kaldırıldı */

/* Parıltı efekti kaldırıldı */

/* Dijital yağmur efekti kaldırıldı */

/* Parçacık container kaldırıldı */

.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: 
        linear-gradient(rgba(92, 211, 185, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(92, 211, 185, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    perspective: 1000px;
    transform-style: preserve-3d;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: rotateX(60deg) translateY(0);
    }
    100% {
        transform: rotateX(60deg) translateY(50px);
    }
}

.wave-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.wave {
    fill: none;
    stroke: rgba(92, 211, 185, 0.1);
    stroke-width: 2;
    vector-effect: non-scaling-stroke;
    animation: wave 3s ease-in-out infinite;
}

@keyframes wave {
    0% {
        d: path("M0,50 Q250,0 500,50 T1000,50");
    }
    50% {
        d: path("M0,50 Q250,100 500,50 T1000,50");
    }
    100% {
        d: path("M0,50 Q250,0 500,50 T1000,50");
    }
}

/* Son parçacık stilleri de kaldırıldı */

/* Stadyum ışığı efekti */
.stadium-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.light-beam {
    position: absolute;
    width: 40%;
    height: 60%;
    background: radial-gradient(ellipse at top, 
        rgba(255,255,255,0.1) 0%, 
        transparent 70%);
}

.light-beam:nth-child(1) { left: 0; transform: skewX(30deg); }
.light-beam:nth-child(2) { right: 0; transform: skewX(-30deg); }

/* Animasyonlar */
/* Complex animations removed for performance */

/* Parçacık animasyonları kaldırıldı */

/* Parçacık hover efektleri kaldırıldı */

/* Background effects removed for performance */

/* İkonlar için neon efekti */
.link-card i {
    font-size: 1.2rem;
    min-width: 28px;
    text-align: center;
    color: rgba(92, 211, 185, 0.9);
    text-shadow: 0 0 12px rgba(92, 211, 185, 0.7);
    transition: all 0.3s ease;
}

/* Instagram butonu ikonları */
.link-card.instagram i {
    color: #fff;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.7),
        0 0 20px rgba(255, 105, 180, 0.5),
        0 0 30px rgba(255, 105, 180, 0.3);
}

/* Telegram butonu ikonları */
.link-card.telegram i {
    color: #fff;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.7),
        0 0 20px rgba(0, 136, 204, 0.5),
        0 0 30px rgba(0, 136, 204, 0.3);
}

/* Sağ ok ikonu özel stil */
.link-card .fa-chevron-right {
    opacity: 0.7;
    font-size: 1.2rem;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

/* Hover durumunda sağ ok animasyonu */
.link-card:hover .fa-chevron-right {
    transform: translateX(0);
    opacity: 1;
    animation: glowPulse 2s infinite;
}

/* Normal butonlar için sol ikon */
.link-card .fa-link {
    color: var(--primary-color);
    text-shadow: 
        0 0 10px rgba(92, 211, 185, 0.7),
        0 0 20px rgba(92, 211, 185, 0.5),
        0 0 30px rgba(92, 211, 185, 0.3);
}

@keyframes glowPulse {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(255, 255, 255, 0.7),
            0 0 20px var(--primary-color),
            0 0 30px var(--primary-color);
    }
    50% {
        text-shadow: 
            0 0 15px rgba(255, 255, 255, 0.9),
            0 0 25px var(--primary-color),
            0 0 35px var(--primary-color);
    }
}

/* Hover durumunda tüm ikonların parlaması */
.link-card:hover i {
    transform: scale(1.1);
    filter: brightness(1.2);
}

/* Mobil optimizasyonu */
@media (max-width: 768px) {
    .link-card i {
        font-size: 1.3rem;
    }
    
    .link-card .fa-chevron-right {
        font-size: 1rem;
    }
}

/* Masaüstü için özel medya sorgusu */
@media (min-width: 1024px) {
    .container {
        max-width: 500px;
        padding: 1rem;
    }

    .sponsor-grid {
        max-width: 500px;
    }
}

/* Büyük ekranlar için ek optimizasyon */
@media (min-width: 1440px) {
    .container {
        max-width: 500px;
    }
}

/* Cenabet ve Betcell için özel yanıp sönme efekti */
.special-glow {
    animation: specialPulse 2s infinite !important;
    border: 2px solid #ff6b6b !important;
}

@keyframes specialPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 107, 107, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
    }
}

/* Sponsor kartları için özel glow efekti */
.sponsor-card.special-glow {
    border: 2px solid #ff6b6b !important;
}

.sponsor-card.special-glow img {
    filter: drop-shadow(0 0 5px rgba(255, 107, 107, 0.7));
}

/* Cenabet için kırmızı efekt */
.link-card[href*="cenalt.com"], .sponsor-card[href*="cenalt.com"] {
    border: 2px solid rgba(189, 16, 48, 0.7);
    animation: redPulse 2s infinite;
}

@keyframes redPulse {
    0% {
        box-shadow: 0 0 5px rgba(189, 16, 48, 0.5),
                   0 0 10px rgba(189, 16, 48, 0.3);
    }
    50% {
        box-shadow: 0 0 10px rgba(189, 16, 48, 0.7),
                   0 0 20px rgba(189, 16, 48, 0.5);
    }
    100% {
        box-shadow: 0 0 5px rgba(189, 16, 48, 0.5),
                   0 0 10px rgba(189, 16, 48, 0.3);
    }
}

/* Betcell için sarı efekt */
.link-card[href*="cellgir.com"], .sponsor-card[href*="cellgir.com"] {
    border: 2px solid rgba(255, 204, 0, 0.7);
    animation: yellowPulse 2s infinite;
}

@keyframes yellowPulse {
    0% {
        box-shadow: 0 0 5px rgba(255, 204, 0, 0.5),
                   0 0 10px rgba(255, 204, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 10px rgba(255, 204, 0, 0.7),
                   0 0 20px rgba(255, 204, 0, 0.5);
    }
    100% {
        box-shadow: 0 0 5px rgba(255, 204, 0, 0.5),
                   0 0 10px rgba(255, 204, 0, 0.3);
    }
}

.link-card[href*="bit.ly/koliktilt"], .sponsor-card[href*="bit.ly/koliktilt"] {
    border: 2px solid rgba(255, 204, 0, 0.7);
    animation: yellowPulse 2s infinite;
}

.sponsor-card[href*="cenalt.com"] img {
    filter: drop-shadow(0 0 3px rgba(189, 16, 48, 0.7));
}

.sponsor-card[href*="cellgir.com"] img {
    filter: drop-shadow(0 0 3px rgba(255, 204, 0, 0.7));
}

.sponsor-card[href*="bit.ly/koliktilt"] img {
    filter: drop-shadow(0 0 3px rgba(255, 204, 0, 0.7));
}

.link-card[href*="bit.ly/mistycasino"], .sponsor-card[href*="bit.ly/mistycasino"] {
    border: 2px solid rgba(35, 101, 62, 0.7);
    animation: mistyPulse 2s infinite;
}

@keyframes mistyPulse {
    0% {
        box-shadow: 0 0 5px rgba(35, 101, 62, 0.5),
                   0 0 10px rgba(35, 101, 62, 0.3);
    }
    50% {
        box-shadow: 0 0 10px rgba(35, 101, 62, 0.7),
                   0 0 20px rgba(35, 101, 62, 0.5);
    }
    100% {
        box-shadow: 0 0 5px rgba(35, 101, 62, 0.5),
                   0 0 10px rgba(35, 101, 62, 0.3);
    }
}

.sponsor-card[href*="bit.ly/mistycasino"] img {
    filter: drop-shadow(0 0 3px rgba(35, 101, 62, 0.7));
}

@media (max-width: 1100px) {
    .container {
        max-width: 100vw;
        padding: 0.5rem;
    }
    .gif-banner img {
        max-width: 100vw;
        height: 40px;
    }
}
@media (max-width: 600px) {
    .gif-banner img {
        height: 32px;
    }
}

/* Banner Slider Styles */
.banner-slider-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0.1rem 0;
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    background: none;
    overflow: hidden;
}

.banner-slider {
    width: 100%;
    max-width: 1000px;
    height: 70px;
    margin: 0;
    position: relative;
}

/* İkinci slider için özel stil - aynı boyutlarda olması için */
#bannerSlider2 {
    margin-top: -1px;
}

.banner-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: translateX(100%);
    pointer-events: none;
}

.banner-item.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
    pointer-events: auto;
}

.banner-item.previous {
    opacity: 0;
    transform: translateX(-100%);
    z-index: 1;
    pointer-events: none;
}

.banner-item a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
}

.banner-item img {
    width: 100%;
    max-width: 1000px;
    height: 70px;
    object-fit: fill;
}

@media (max-width: 1100px) {
    .banner-slider-container {
        margin: 0.05rem 0;
    }
    
    .banner-slider {
        margin: 0;
        height: 70px;
    }
    
    #bannerSlider2 {
        margin-top: -1px;
    }
    
    .banner-item {
        height: 70px;
    }
    
    .banner-item img {
        max-width: 100vw;
        height: 70px;
        object-fit: fill;
    }
}

@media (max-width: 600px) {
    .banner-slider-container {
        margin: 0.05rem 0;
    }
    
    .banner-slider {
        margin: 0;
        height: 60px;
    }
    
    #bannerSlider2 {
        margin-top: -1px;
    }
    
    .banner-item {
        height: 60px;
    }
    
    .banner-item img {
        height: 60px;
        object-fit: fill;
    }
    
    /* Banner ve diğer elementler arasındaki boşluğu azalt */
    .bio-section {
        margin: 0.2rem auto 0.8rem auto;
    }
}

 