:root {
    --card-bg: #1f122e;
    --shadow-dark: rgba(0, 0, 0, 0.6);
    --accent-color: #e040fb;
    --text-light: #f5eef9;
    --text-muted: #c9a4e0;
    --gradient-end: #ab47bc;
    --gradient-start: #7b1fa2;
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Arial', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
   background-image:url('https://i.ibb.co/SxP9M3v/PAGESKIN.jpg');
    background-size: 100% 100%, 15px 15px;
}

.page-content-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    margin: 0 auto;
    flex-grow: 1;
    max-width: 1700px;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER STYLES */
.header {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo {
    width: 140px;
    height: auto;
    transition: all 0.3s ease;
}

.logo img {
    width: 90%;
    margin-left: 13px;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)) brightness(1.02);
    transition: all 0.3s ease;
}

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

.logo:hover img {
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15)) brightness(1.05);
}

.header-center {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    flex-grow: 1;
}

.header-social-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.header-social-btn {
    display: flex;
    align-items: center;
    background-color: #5865F2;
    padding: 8px 15px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.header-social-btn i {
    font-size: 20px;
    margin-right: 8px;
    transition: transform 0.3s ease;
    color: white;
}

.header-social-btn span {
    display: block;
    color: white;
}

.header-social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1);
}

.header-social-btn:hover i {
    transform: scale(1.1);
}

/* Social button colors */
.header-social-btn[href*="discord.com"] { 
    background-color: #007bff;
    background-image: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}
.header-social-btn[href*="t.me"] { 
    background-color: #26A5E4;
    background-image: linear-gradient(135deg, #26A5E4 0%, #1d8bc7 100%);
}
.header-social-btn[href*="kick.com"] { 
    background-color: #52B24C;
    background-image: linear-gradient(135deg, #52B24C 0%, #3e9439 100%);
}
.header-social-btn[href*="twitch.tv"] { 
    background-color: #9146FF;
    background-image: linear-gradient(135deg, #9146FF 0%, #7a30e6 100%);
}
.header-social-btn[href*="instagram.com"] { 
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.header-social-btn[href*="youtube.com"] { 
    background-color: #FF0000;
    background-image: linear-gradient(135deg, #FF0000 0%, #cc0000 100%);
}
.header-social-btn[href*="twitter.com"],
.header-social-btn[href*="x.com"] { 
    background-color: #1DA1F2;
    background-image: linear-gradient(135deg, #1DA1F2 0%, #0c85d0 100%);
}

.header-right {
    display: flex;
    gap: 10px;
}

.login-btn, .register-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.login-btn {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.register-btn {
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    color: var(--text-light);
}

.login-btn:hover, .register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-dark);
}

.login-btn:hover {
    background: rgba(224, 64, 251, 0.1);
}

.register-btn:hover {
    background: linear-gradient(45deg, #8e24aa, #ab47bc);
}

/* MAIN CONTAINER */
.main-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 20px;
    padding: 20px 20px 20px 0;
    width: 100%;
    flex-grow: 1;
}

/* LEFT SIDEBAR */
.left-sidebar {
    background: rgba(47, 24, 71, 0.85);
    backdrop-filter: blur(12px); 
    padding: 20px;
    height: fit-content;
    border-right: 1px solid var(--accent-color);
    box-shadow: 4px 0 15px var(--shadow-dark);
    overflow-y: auto; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    border-radius: 0 15px 15px 0;
}

.menu-banner-container {
    width: 64%;
    max-width: 1200px;
    margin: 25px auto;
    padding: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--accent-color);
    box-shadow: 0 5px 15px rgba(123, 31, 162, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.menu-banner-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(224, 64, 251, 0.4);
    border-color: var(--accent-color);
}

.menu-banner-img {
    width: 100%;
    height: auto;
    max-height: 30vh;
    display: block;
    border-radius: 10px;
    object-fit: contain;
    transition: transform 0.7s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px var(--shadow-dark);
    background: rgba(31, 18, 46, 0.3);
}

.menu-banner-container:hover .menu-banner-img {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(224, 64, 251, 0.25);
}

.left-sidebar::-webkit-scrollbar {
    width: 6px;
}

.left-sidebar::-webkit-scrollbar-track {
    background: rgba(31, 18, 46, 0.3);
}

.left-sidebar::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--gradient-start), var(--accent-color));
    border-radius: 10px;
}

.sidebar-nav .nav-item {
    text-decoration: none;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.35s ease-out;
    margin-bottom: 5px;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.sidebar-nav .nav-item i {
    width: 26px;
    text-align: center;
    font-size: 17px;
    transition: transform 0.3s ease;
}

.sidebar-nav .nav-item:hover i {
    transform: scale(1.15);
    color: var(--accent-color);
}

.sidebar-nav .nav-item:hover {
    background: rgba(123, 31, 162, 0.25);
    color: var(--text-light);
    border-color: rgba(224, 64, 251, 0.3);
    box-shadow: 0 4px 12px rgba(123, 31, 162, 0.2);
    transform: translateX(5px);
}

.sidebar-nav .nav-item.active {
    background: linear-gradient(90deg, rgba(123, 31, 162, 0.4), rgba(171, 71, 188, 0.3));
    color: white;
    border-color: var(--accent-color);
    box-shadow: 0 4px 16px rgba(224, 64, 251, 0.3);
    font-weight: 600;
    transform: translateX(5px);
}

.sidebar-nav .nav-item.active::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color);
}

/* MAIN CONTENT */
.main-content {
    display: grid;
    grid-template-columns: 1fr 5fr 1fr;
    gap: 20px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 20px;
}

.main-content-gif-banner {
    height: 800px;
    overflow: hidden;
    border-radius: 10px;
}

.main-content-gif-banner img {
    width: 100%;
    height: 100%;
    object-fit: contain!important;
}

.center-column-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.top-banner {
    width: 100%;
    max-width: 875px; /* Maksimum geniÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€¦Ã‚Â¸lik */
    margin: 0 auto;    /* Ortalamak iÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â§in */
    padding: 10px;
    box-sizing: border-box;
}

.main-top-banner-image-container {
    width: 100%;
    overflow: hidden;
    border-radius: 10px; /* ÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â°stersen kenarlarÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â± yuvarlatabilirsin */
}

.main-top-banner-image-container img {
    width: 100%;
    height: auto;  /* OranlarÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â± koruyarak geniÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€¦Ã‚Â¸lik dolsun */
    display: block;
    object-fit: cover; /* Resmin alanÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â± gÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¼zel doldurmasÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â± iÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â§in */
}

/* Mobilde biraz daha kÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¼ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â§ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¼k padding veya max-width ayarÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â± istersen */

@media (max-width: 768px) {
    .top-banner {
        width: 100%;
        height: auto;
        padding: 0 10px; /* Kenarlarda kÃ¼Ã§Ã¼k bir boÅŸluk bÄ±rakalÄ±m */
    }
    .main-top-banner-image-container img {
        object-fit: fill; /* Resmi container'a tam sÄ±ÄŸdÄ±r */
        height: auto;
    }
}


.main-top-banner-image-container img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
}

/* ANASAYFA BANNER */
.anasayfa-banner {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.banner-slide {
    position: relative;
    width: 33.333%;
    height: 100%;
}

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

.banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 30px;
    padding-top: 60px;
}

.banner-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.banner-content p {
    font-size: 16px;
    margin-bottom: 20px;
}

.banner-btn {
    background: linear-gradient(45deg, #3b82f6, #2563eb);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

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

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

.dot.active {
    background: white;
    transform: scale(1.2);
}

.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

.banner-nav.prev { left: 20px; }
.banner-nav.next { right: 20px; }

/* FEATURED SITES */
.featured-sites-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.featured-site-card {
    position: relative;
    width: 100%;
    aspect-ratio: 2/3; /* Dikey ve yatay oran sabit */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.featured-site-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.site-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-site-card:hover .site-bg {
    transform: scale(1.05);
}

.site-logo {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 180px;
    z-index: 2;
    transition: all 0.3s ease;
}

.featured-site-card:active .site-logo {
    transform: translateX(-50%) scale(0.95);
}

.site-logo img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
    transition: all 0.3s ease;
}

.featured-site-card:hover .site-logo img {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.7));
}

.site-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.site-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: white;
    color: black;
    font-weight: 600;
    border: 1px solid rgb(146 26 250);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    backdrop-filter: blur(5px);
    width: 100%;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 30px;
}

.site-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .featured-sites-grid {
        gap: 12px;
    }
}

@media (max-width: 992px) {
    .featured-sites-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    .featured-site-card {
        border-radius: 10px;
    }
}

@media (max-width: 768px) {
    .featured-sites-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }
    .site-logo {
        top: 10px;
        width: 70%;
    }
    .site-content {
        padding: 10px;
    }
    .site-btn {
        padding: 6px 15px;
        font-size: 11px;
        min-height: 11px;
    }
}

@media (max-width: 576px) {
    .featured-sites-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }
    .featured-site-card {
        border-radius: 8px;
    }
    .site-logo {
        width: 65%;
    }
    .site-btn {
        padding: 5px 12px;
        font-size: 10px;
        min-height: 10px;
    }
}
/* Logo iÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â§in hafif sÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â±ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â§rama efekti */
@keyframes logoBounce {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.15); }
}

.featured-site-card:hover .site-logo {
    animation: logoBounce 0.6s ease;
}

/* Arka planÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â± karartarak logo ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¶ne ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â§ÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â±ksÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â±n */
.featured-site-card:hover .site-bg {
    filter: brightness(0.7);
}
/* OTHER SITES */
.other-sites-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 10px;
}

.other-site-btn {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: #1f122e00;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: 2px solid rgb(224 64 251);
    box-shadow: 0 10px 30px rgb(23 6 31);
}

.other-site-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 28px rgba(0,0,0,0.4);
}

.other-sites-grid .other-site-btn:nth-child(1) {border-color: #f4ce85;}
.other-sites-grid .other-site-btn:nth-child(2) {border-color: #41eff6;}
.other-sites-grid .other-site-btn:nth-child(3) {border-color: #f2f2f2;}
.other-sites-grid .other-site-btn:nth-child(4) {border-color: #1db320;}
.other-sites-grid .other-site-btn:nth-child(5) {border-color: #126e51;}
.other-sites-grid .other-site-btn:nth-child(6) {border-color: #bc641f;}
.other-sites-grid .other-site-btn:nth-child(7) {border-color: #5af1be;}
.other-sites-grid .other-site-btn:nth-child(8) {border-color: #00e4ff;}
.other-sites-grid .other-site-btn:nth-child(9) {border-color: #f3d489;}
.other-sites-grid .other-site-btn:nth-child(10) {border-color: #fefefe;}

.other-site-btn:hover img {
    transform: scale(1.1);
}

.other-site-btn img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.other-site-btn:hover img {
    transform: scale(1.1);
}

/* TOP BANNER */
.top-banner {
    background: none;
    border: 1px solid white;
    border-radius: 10px;
    padding: 3px;
    position: relative;
    overflow: hidden;
}

.banner-gradient {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    gap: 10px;
}

.banner-left, .banner-center, .banner-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 150px;
}

.banner-left img, .banner-center img, .banner-right img {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    display: block;
}

.banner-left { justify-content: flex-start; }
.banner-right { justify-content: flex-end; }
.sponsor-logo {
    max-width: 150px;
    max-height: 40px;
    object-fit: contain;
    margin-bottom: 10px;
}
/* SPONSOR LOGOS */
.sponsor-logos {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* SEARCH BOX */
.search-box {
    position: relative;
    max-width: 400px;
    margin: 0px auto;
}

.search-box input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    backdrop-filter: blur(10px);
}

.search-box input::placeholder { color: rgba(255, 255, 255, 0.7); }

.search-box i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
}

/* GAMES GRID */
.games-grid {
    border-radius: 15px;
    margin-top: 40px;
}

/* EVENT SECTION */
 .event-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            padding: 13px;
         
        }

      
.event-sec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* masaÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¼stÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¼ 4 sÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¼tun */
    gap: 20px;
}

        .event-sec-card {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.5);
            transition: transform 0.3s ease;
        }

        .event-sec-card:hover {
            transform: scale(1.02);
        }

        .event-sec-bg-image {
            width: 100%;
            height: auto;
            display: block;
        }

        .event-sec-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 70%;
            height: 80%;
            background: rgba(0, 0, 0, 0.45);
            z-index: 1;
        }

        .event-sec-content {
            position: absolute;
            z-index: 2;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: #fff;
            padding: 10px;
            width: 90%;
        }

        .event-sec-logo img {
            max-width: 100px;
            margin-bottom: 12px;
        }

        .event-sec-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 6px;
        }

        .event-sec-description {
            font-size: 14px;
            margin-bottom: 10px;
        }

        .event-sec-btn {
            background: #ffc107;
            color: #000;
            padding: 8px 16px;
            text-decoration: none;
            font-weight: bold;
            border-radius: 5px;
            display: inline-block;
        }

        @media (max-width: 768px) {
            .event-container
            {
             position: relative;
            max-width: 400px;
            margin: 0 auto;
            padding: 13px;
            right: 29%;
            }
            .event-sec-content {
                top: 60%;
                transform: translate(-50%, -60%);
            }

            .event-sec-title {
                font-size: 16px;
            }

            .event-sec-description {
                font-size: 13px;
            }

            .event-sec-btn {
                font-size: 14px;
                padding: 6px 12px;
            }

            .event-sec-logo img {
                max-width: 80px;
            }
        }

/* SOCIAL REDIRECT */
.social-redirect-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding: 5px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    max-width: 100%;
    margin: 0 auto;
    justify-content: center;
}

.social-redirect-grid > * {
    flex: 1 1 150px;
    max-width: 200px;
}

.social-redirect-card {
    scroll-snap-align: start;
    background: rgba(31, 18, 46, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    padding: 25px 15px;
    border: 1px solid rgba(224, 64, 251, 0.3);
    position: relative;
    z-index: 1;
}

.social-redirect-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(123, 31, 162, 0.2) 0%, rgba(171, 71, 188, 0.2) 100%);
    z-index: -1;
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-redirect-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    background: rgba(22, 33, 62, 0.9);
    border-color: var(--brand-color);
}

.social-redirect-card:hover::before { opacity: 1; }

.social-icon-container {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.social-platform-name {
    margin: 15px 0 8px;
    font-size: 17px;
    color: var(--text-light);
    font-weight: 600;
    transition: color 0.3s ease;
}

.social-action-text {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
    transition: color 0.3s ease;
}

.social-redirect-card:hover .social-platform-name { color: var(--accent-color); }
.social-redirect-card:hover .social-action-text { color: var(--gradient-end); }
.social-redirect-card:hover .social-icon-container {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.discord { --brand-color: #5865F2; }
.telegram { --brand-color: #26A5E4; }
.kick { --brand-color: #53FC18; }
.twitch { --brand-color: #9146FF; }
.instagram { --brand-color: #E1306C; }
.youtube { --brand-color: #FF0000; }
.microsoft { --brand-color: #0078D4; }

.discord .social-icon-container { background: var(--brand-color); border-radius: 50%; }
.telegram .social-icon-container { background: var(--brand-color); border-radius: 35% 35% 50% 50%; }
.kick .social-icon-container { background: var(--brand-color); color: #000; border-radius: 16px; }
.twitch .social-icon-container { background: var(--brand-color); border-radius: 12px; }
.instagram .social-icon-container { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); border-radius: 18px; }
.youtube .social-icon-container { background: var(--brand-color); border-radius: 12px; }
.microsoft .social-icon-container { background: var(--brand-color); border-radius: 12px; }

.social-link {
    text-decoration: none;
    display: block;
    color: inherit;
    height: 100%;
}

/* GAME CARDS */
.main-sponsors-row, .small-sponsors-row {
    grid-column: 1 / -1;
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}

.main-sponsors-row { grid-template-columns: repeat(2, 1fr); }
.small-sponsors-row { grid-template-columns: repeat(4, 1fr); }

.game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-left: 4px solid;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.card-image {
    height: 120px;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

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

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.card-header h3 {
    font-size: 20px;
    font-weight: bold;
}

.rating {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 14px;
}

.card-content h4 {
    color: #00d4ff;
    margin-bottom: 10px;
    font-size: 16px;
}

.card-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-size: 14px;
}

.play-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    border: none;
    border-radius: 25px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: linear-gradient(45deg, #00b8e6, #007399);
    transform: translateY(-2px);
}

.game-card.main-sponsor .card-image { height: 180px; }
.game-card.main-sponsor .card-header h3 { font-size: 22px; }
.game-card.small-sponsor .card-image { height: 100px; }
.game-card.small-sponsor .card-header h3 { font-size: 18px; margin-bottom: 0; }
.game-card.small-sponsor .card-header .rating { display: none; }
.game-card.small-sponsor .card-content { display: none; }

.misty { border-left-color: #667eea; }
.festwin { border-left-color: #ffd700; }
.pradabet { border-left-color: #ff6b35; }
.casinodior { border-left-color: #8b5cf6; }
.onebet { border-left-color: #10b981; }
.nasabet { border-left-color: #ef4444; }
.aidbet { border-left-color: #3B82F6; }
.atlasbet { border-left-color: #F59E0B; }
.betkanyon { border-left-color: #06B6D4; }

/* STAKE BANNER */
.stake-banner {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: 2px solid #00d4ff;
    padding: 20px;
    border-radius: 15px;
}

.stake-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.stake-banner-image-container {
    flex: 1;
    min-width: 200px;
}

.stake-banner-image-container img {
    width: 100%;
    max-height: 100px;
    object-fit: contain;
    display: block;
    border-radius: 10px;
}

.stake-content .play-btn {
    flex-shrink: 0;
    width: auto;
    padding: 12px 30px;
}

.scrolling-logos-container {
    width: 100%;
    max-width: 850px; /* Adjust to match your main content width */
    margin: 0 auto;
    padding: 10px 0;
    overflow: hidden;
}

.scrolling-logos-wrapper {
    background: linear-gradient(90deg, hsla(279, 57%, 12%, 1) 0%, hsla(291, 96%, 62%, 1) 50%, hsla(279, 57%, 12%, 1) 100%);
}

.scrolling-logos {
    display: flex;
    align-items: center;
    animation: scroll 8s linear infinite;
    will-change: transform;
}

.logo-item {
    height: 50px;
    width: 100px;
    margin: 0 12px;
    filter: grayscale(50%) opacity(0.7);
    transition: all 0.3s ease;
    object-fit: contain;
}

.logo-item:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Negative for left direction */
    }
}

/* Pause animation on hover (optional) */
.scrolling-logos:hover .scrolling-logos {
    animation-play-state: paused;
}

/* TICKETS */
.tickets-header {
    background: linear-gradient(135deg, #3B82F6, #1E40AF);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tickets-header .header-content h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.tickets-header .header-content p { opacity: 0.9; }

.new-ticket-btn {
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    border-radius: 25px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.new-ticket-btn:hover {
    background: white;
    color: #3B82F6;
}

.ticket-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card i {
    font-size: 36px;
    color: #00d4ff;
}

.stat-info h3 {
    font-size: 28px;
    margin-bottom: 5px;
}

.stat-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.tickets-container {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 20px;
}

.tickets-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 20px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active { background: #3B82F6; }

.ticket-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.ticket-item:hover {
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.ticket-status {
    width: 4px;
    height: 60px;
    border-radius: 2px;
    flex-shrink: 0;
}

.ticket-status.open { background: #10b981; }
.ticket-status.answered { background: #f59e0b; }
.ticket-status.closed { background: #6b7280; }

.ticket-content { flex: 1; }

.ticket-item .ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.ticket-item .ticket-header h3 { font-size: 18px; }
.ticket-id { color: rgba(255, 255, 255, 0.5); font-size: 14px; }

.ticket-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}
.ticket-meta span { display: flex; align-items: center; gap: 5px; }
.priority-high { color: #ef4444; }
.priority-medium { color: #f59e0b; }
.priority-low { color: #10b981; }

.view-btn {
    padding: 8px 20px;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    border: none;
    border-radius: 20px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-left: auto;
}

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

/* MODAL */
.new-ticket-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

.modal-content {
    background: #28043800;
    border-radius: 20px;
    padding: 30px;
    max-width: 450px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    
    /* Ortalama iÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â§in eklenen stil */
    position: fixed;
    top: 28%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.close-modal {
    font-size: 30px;
    background: none; border: none;
    color: white; cursor: pointer;
}

.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 10px; font-weight: bold; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 16px;
}
.form-group textarea { min-height: 100px; }

.priority-options { display: flex; gap: 10px; flex-wrap: wrap; }
.priority-options label { display: flex; align-items: center; gap: 5px; cursor: pointer; }

.submit-ticket-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #3B82F6, #1E40AF);
    border: none; border-radius: 25px;
    color: white; font-weight: bold; cursor: pointer;
    transition: all 0.3s ease;
}
.submit-ticket-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.4);
}

/* MARKET */
.market-header {
    background: linear-gradient(135deg, #667eea2b, #764ba2a6);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.market-header h1 {
    font-size: 32px;
    color: white;
    margin: 0 0 10px 0;
}

.market-balance {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 25px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.market-balance strong {
    font-size: 24px;
    color: #ffd700;
}

.market-categories {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover, .category-btn.active {
    background: linear-gradient(45deg, #00d4ff, #667eea);
    transform: translateY(-2px);
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.market-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
.market-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}
.item-badge {
    position: absolute; top: -10px; right: -10px;
    padding: 5px 15px; border-radius: 20px;
    font-size: 12px; font-weight: bold; color: white;
}
.item-icon { font-size: 48px; margin-bottom: 20px; }
.market-item h3 { font-size: 24px; margin-bottom: 10px; }
.market-item p { color: rgba(255, 255, 255, 0.7); margin-bottom: 20px; }
.item-price { font-size: 28px; font-weight: bold; margin-bottom: 20px; color: #ffd700; }
.buy-btn {
    width: 100%; padding: 12px;
    background: linear-gradient(45deg, #10b981, #059669);
    border: none; border-radius: 25px;
    color: white; font-weight: bold; cursor: pointer;
    transition: all 0.3s ease;
}
.buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

.market-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.market-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.market-img {
    height: 150px;
    background-size: cover;
    background-position: center;
    width: 100%;
}

.market-content {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.market-title { font-size: 18px; margin-bottom: 10px; color: white; }
.market-price { font-size: 24px; font-weight: bold; color: #ffd700; margin-bottom: 10px; }
.market-desc { color: rgba(255, 255, 255, 0.7); font-size: 14px; margin-bottom: 15px; flex-grow: 1; }

.market-btn {
    width: 100%; padding: 10px;
    background: linear-gradient(45deg, #3b82f6, #2563eb);
    border: none; border-radius: 25px;
    color: white; font-weight: bold; cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}
.market-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

/* SPECIAL OFFER */
.special-offer-banner {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.special-offer-banner::before {
    content: ''; position: absolute;
    top: -50%; right: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

.offer-content { position: relative; z-index: 2; }
.offer-content h2 { font-size: 28px; margin-bottom: 10px; }
.offer-content p { margin-bottom: 20px; opacity: 0.9; }

.offer-btn {
    margin-top: 20px; padding: 15px 40px;
    background: white; color: #ff6b35;
    border: none; border-radius: 30px;
    font-weight: bold; cursor: pointer;
    transition: all 0.3s ease;
}
.offer-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* NEWS */
.news-header {
    background: linear-gradient(135deg, #3c1952, #dc262661);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.news-header h1 {
    font-size: 32px;
    color: white;
    margin-bottom: 20px;
}

.news-categories {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.featured-news {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    width: 100%;
}

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

.featured-badge {
    position: absolute; top: 20px; left: 20px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #1a1a2e; padding: 8px 20px;
    border-radius: 25px; font-weight: bold;
}

.featured-content { display: flex; flex-direction: column; justify-content: center; }
.news-category { color: #EF4444; font-weight: bold; margin-bottom: 10px; display: inline-block; }
.featured-content h2 { font-size: 28px; margin-bottom: 15px; }
.featured-content p { color: rgba(255, 255, 255, 0.8); line-height: 1.6; margin-bottom: 20px; }

.news-meta {
    display: flex; gap: 20px; flex-wrap: wrap;
    font-size: 14px; color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}
.news-meta span { display: flex; align-items: center; gap: 5px; }

.read-more-btn {
    padding: 12px 30px;
    background: linear-gradient(45deg, #EF4444, #DC2626);
    border: none; border-radius: 25px;
    color: white; font-weight: bold; cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}
.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.4);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.news-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.news-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    width: 100%;
}
.news-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.news-card:hover .news-image img { transform: scale(1.05); }

.news-category-badge {
    position: absolute; top: 15px; left: 15px;
    background: rgba(0, 0, 0, 0.7);
    padding: 5px 15px; border-radius: 20px;
    font-size: 12px;
}

.news-content { padding: 20px; flex-grow: 1; }
.news-content h3 { font-size: 20px; margin-bottom: 10px; }
.news-content p { color: rgba(255, 255, 255, 0.7); line-height: 1.5; margin-bottom: 15px; }

.news-footer { display: flex; justify-content: space-between; align-items: center; padding: 0 20px 20px; }
.read-link {
    color: #EF4444; text-decoration: none; font-weight: bold;
    display: flex; align-items: center; gap: 5px;
    transition: gap 0.3s ease;
}
.read-link:hover { gap: 10px; }

/* NEWSLETTER */
.newsletter-section {
    background: linear-gradient(135deg, #2e1644, #b536cf);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-bottom: 30px;
}

.newsletter-content h2 {font-size: 28px;margin-bottom: 10px;color: white;}
.newsletter-content p {margin-bottom: 25px;opacity: 0.9;color: white;}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1; padding: 15px 20px;
    border: none; border-radius: 25px;
    background: rgba(255, 255, 255, 0.2);
    color: white; font-size: 16px;
    min-width: 0;
}
.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.7); }

.newsletter-form button {
    padding: 15px 30px;
    background: white; color: #1E40AF;
    border: none; border-radius: 25px;
    font-weight: bold; cursor: pointer;
    transition: all 0.3s ease;
}
.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* SECTION STYLES */
.section-title {
    margin: 15px 0 10px;
    position: relative;
}

.section-title h3 {
    font-size: 22px;
    color: #ffffff;
    margin: 0 0 8px 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.line {
    height: 3px;
    width: 60px;
    background: #EF4444;
    border-radius: 3px;
    margin: 5px 0;
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3);
}
.section-title .subtitle {
    font-size: 14px;
    color: #bbbbbb;
    margin-bottom: 5px;
    font-weight: 400;
    font-style: italic;
}
/* ANNOUNCEMENTS */
.announcement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.announcement-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.announcement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card-meta { display: flex; justify-content: space-between; padding: 15px; background: rgba(0, 0, 0, 0.2); }
.card-date { font-size: 12px; color: rgba(255, 255, 255, 0.7); }
.card-badge { padding: 5px 10px; border-radius: 5px; font-size: 12px; font-weight: bold; }
.no-wagering { background: #10B981; color: white; }

.card-image-wrapper { height: 300px; overflow: hidden; width: 100%; }
.card-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }

.card-content { padding: 15px; flex-grow: 1; }
.card-title { font-size: 16px; margin-bottom: 10px; color: white; }
.card-description { font-size: 14px; color: rgba(255, 255, 255, 0.7); margin-bottom: 15px; }

.card-footer { padding: 0 15px 15px; margin-top: auto; }
.card-btn {
    width: 100%; padding: 10px;
    background: linear-gradient(45deg, #EF4444, #DC2626);
    border: none; border-radius: 5px;
    color: white; font-weight: bold; cursor: pointer;
    transition: all 0.3s ease;
}
.card-btn:hover {
    background: linear-gradient(45deg, #DC2626, #EF4444);
    transform: translateY(-2px);
}

/* FOOTER */
.advanced-footer {
    background: linear-gradient(135deg, rgb(47 0 71 / 42%) 0%, rgba(88, 0, 133, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: auto;
    width: 100%;
    position: relative;
    z-index: 1;
    border-radius: 20px 20px 0 0;
    margin-left: auto; /* saÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€¦Ã‚Â¸a kaydÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â±rmak iÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â§in sola boÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€¦Ã‚Â¸luk bÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â±rak */
    margin-right: 1%; /* biraz daha saÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€¦Ã‚Â¸a ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â§ekmek iÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â§in */
}

.advanced-footer::before {
    content: '';
    position: absolute;
    top: 0;
    display: none;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    z-index: -1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    margin-bottom: 30px;
}

.footer-left-section {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
    min-width: 200px;
}

.footer-logo-advanced {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-logo-advanced:hover {
    color: var(--accent-color);
}

.footer-logo-advanced img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 5px rgba(224, 64, 251, 0.3));
}

.footer-links-section {
    display: flex;
    gap: 20px;
}

.footer-links-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.footer-links-section a:hover {
    color: white;
}

.footer-links-section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-links-section a:hover::after {
    width: 100%;
}

.footer-links-section a:hover {
    color: var(--accent-color);
}

.footer-center-section {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.footer-social-media-section {
    text-align: center;
    margin: 0 auto;
}

.footer-social-media-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.footer-social-media-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer-social-icons-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.footer-social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(224, 64, 251, 0.4);
    background: var(--accent-color);
}

.footer-right-section {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 1;
    min-width: 200px;
}

.copyright-and-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.footer-copyright-advanced,
.copyright-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    padding-top: 0;
    margin-top: 0;
    text-align: right;
    display: block;
    width: auto;
}

.developer-logo img {
    position: relative;
    top: 10px;
    height: 25px;
    width: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.developer-logo:hover img {
    opacity: 1;
    transform: scale(1.05);
}

.footer-tagline-advanced {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-align: center;
}

/* ANIMATIONS */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(0, 212, 255, 0.5); }
    50% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.8); }
    100% { box-shadow: 0 0 5px rgba(0, 212, 255, 0.5); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.1); }
::-webkit-scrollbar-thumb { background: linear-gradient(45deg, #00d4ff, #667eea); border-radius: 4px; }

/* UTILITIES */
.game-card.search-highlight {
    border: 2px solid #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.loading {
    display: inline-block;
    width: 20px; height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #00d4ff;
    animation: spin 1s ease-in-out infinite;
}

/* ===== RESPONSIVE DESIGN ===== */

/* TABLET - 1024px */
@media (max-width: 1024px) {
    .main-container {
        grid-template-columns: 200px 1fr;
        gap: 15px;
        padding: 15px;
    }
    
    .left-sidebar {
        padding: 15px;
    }
    
    .main-content {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }
    
    .main-content-gif-banner {
        display: none;
    }
    
    
    .other-sites-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .scrolling-logos-wrapper {
        width: 90%;
        max-width: 850px;
    }
}

/* MOBILE - 768px */
@media (max-width: 768px) {
    /* Header Mobile */
    .header {
        padding: 10px 0;
    }
    
    .header .container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding: 0px 15px;
    }
    
.logo {
    width: 130px; /* Logoyu küçült */
    height: auto;
    margin: 0;
    order: 1;
    /* margin-left: -15px; */ /* Sola yasla */
}

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

    .header-right {
        position: static;
        order: 3;
        display: flex;
        gap: 5px;
        margin-left: auto;
    }
    
    .login-btn, .register-btn {
        padding: 8px 12px;
        position: relative;
        font-size: 12px;
    }
    
    .header-center {
        order: 4;
        position: relative;
        top: 0px;
        width: 100%;
        padding: 10px 0 0 0;
        margin-top: 10px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    .header-social-buttons {
        justify-content: center;
        gap: 8px;
        width: 100%;
    }
    
    .header-social-btn {
        padding: 6px 10px;
        font-size: 14px;
    }
    
    .header-social-btn i {
        font-size: 16px;
        margin-right: 5px;
    }
    
    /* Main Container Mobile */
    .main-container {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
         /* Space for bottom navigation */
    }
    
/* Sidebar Mobile - Bottom Navigation */
.left-sidebar {
    width: 100%;
    height: 70px;
    position: fixed;
    bottom: 0px;
    overflow: hidden;
    left: 0;
    top: auto;
    border-radius: 20px 20px 0 0;
    padding: 5px 15px;
    border-right: none;
    border-top: 1px solid var(--accent-color);
    box-shadow: 0 -4px 15px var(--shadow-dark);
    z-index: 1000;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: #1f122e99 !important; 
}

.sidebar-nav {
    flex-direction: row;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0;
    gap: 5px;
}

.menu-banner-container {
    order: 0;
    width: 60px;
    height: 60px;
    margin: 0 10px;
    border-radius: 50%;
    position: static;
    z-index: auto;
    flex-shrink: 0;
}

.sidebar-nav .nav-item {
    flex-direction: column;
    padding: 4px;
    border-radius: 8px;
    margin: 0;
    width: 60px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}
@media (max-width: 768px) {
    .scrolling-logos {
        gap: 2px;
        animation-duration: 30s; 
    }
}


/* BaÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€¦Ã‚Â¸lÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â±klarÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â± goster */
.sidebar-nav .nav-item span {
    display: block !important;
    font-size: 10px;
    margin-top: 4px;
    line-height: 1.2;
    font-weight: 500;
    text-align: center;
}

.sidebar-nav .nav-item i {
    font-size: 20px;
    margin-bottom: 2px;
}

.sidebar-nav .nav-item.active,
.sidebar-nav .nav-item:hover {
    transform: translateY(-3px);
    background-color: rgba(224, 64, 251, 0.2);
}

.sidebar-nav .nav-item.active::after {
    display: none;
}

.menu-banner-img {
    border-radius: 50%;
    object-fit: cover;
}

.menu-banner-container:hover {
    transform: scale(1.1);
}
    
    /* Main Content Mobile */
    .main-content {
        padding: 15px;
        margin-bottom: -66px !important;
    }
    
    .main-content-gif-banner {
        display: none;
    }
    
    /* Banner Mobile */
    .anasayfa-banner {
        height: 300px;
        border-radius: 10px;
        margin-bottom: 20px;
    }
    
    .banner-content {
        padding: 20px;
        padding-top: 50px;
    }
    
    .banner-content h3 {
        font-size: 22px;
        margin-bottom: 8px;
    }
    
    .banner-content p {
        font-size: 14px;
        margin-bottom: 15px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .banner-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .banner-dots {
        bottom: 15px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .banner-nav {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .banner-nav.prev { left: 10px; }
    .banner-nav.next { right: 10px; }
    
    
    /* Other Sites Mobile */
    .other-sites-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    /* Event Section Mobile */
    .event-sec-header {
        gap: 10px;
        margin-bottom: 20px;
        padding: 0 8px;
    }
    
    .event-sec-header-icon {
        font-size: 24px;
    }
    
    .event-sec-header h3 {
        font-size: 20px;
    }
    
    .event-sec-header p {
        font-size: 12px;
    }
    
    .event-sec-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-right: 10px;
        margin-bottom: 30px;
    }
    
    .event-sec-card {
        height: 200px;
        border-radius: 12px;
    }
    
    .event-sec-content {
        padding: 15px;
    }
    
    .event-sec-logo {
        top: 15px;
        left: 15px;
    }
    
    .event-sec-logo img {
        max-width: 60px;
    }
    
    .event-sec-title {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .event-sec-description {
        font-size: 9px;
        margin-bottom: 15px;
        -webkit-line-clamp: 3;
    }
    
    .event-sec-btn {
        padding: 8px 15px;
        font-size: 10px;
        border-radius: 20px;
    }
    
    /* Social Redirect Mobile */
    .social-redirect-grid {
        gap: 10px;
        padding: 15px 10px;
    }
    
    .social-redirect-grid > * {
        flex: 1 1 calc(25% - 10px);
        max-width: calc(25% - 10px);
        min-width: 0;
    }
    
    .social-redirect-card {
        padding: 12px 5px;
    }
    
    .social-icon-container {
        width: 36px;
        height: 36px;
        font-size: 18px;
        margin-bottom: 8px;
        border-radius: 10px;
    }
    
    .social-platform-name {
        font-size: 12px;
        margin: 8px 0 4px;
    }
    
    .social-action-text {
        font-size: 10px;
        margin-top: 4px;
        display: none;
    }
    
    .social-redirect-card:hover {
        transform: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    
    .social-redirect-card:hover .social-icon-container {
        transform: scale(1.05);
    }
    
    /* Scrolling Logos Mobile */
    .scrolling-logos-wrapper {
        width: 400px;
        padding: 0 15px;
    }
    
    .scrolling-logos {
        gap: 2px;
        animation-duration: 30s;
    }
    
  .logo-item {
    height: 40px; /* Smaller logos on mobile */
    margin: 0 5px; /* Less spacing between logos */
  }
    
    /* Game Cards Mobile */
    .main-sponsors-row {
        grid-template-columns: 1fr;
    }
    
    .small-sponsors-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    /* Top Banner Mobile */
    .main-top-banner-image-container {
        border-radius: 10px;
    }
    
    .main-top-banner-image-container img {
        max-height: 200px;
    }
    
    .top-banner {
        border-radius: 5px;
        padding: 2px;
        margin-left: -5px;
        bottom: 12px;
    }
    
    /* Featured News Mobile */
    .featured-news {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .featured-image {
        height: 200px;
    }
    
    /* News Grid Mobile */
    .news-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Market Grid Mobile */
    .market-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Newsletter Mobile */
    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
}

/* VERY SMALL MOBILE - 480px */
@media (max-width: 480px) {
    .logo {
        width: 90px;
    }
    
    .header-right {
        gap: 3px;
    }
    
    .login-btn, .register-btn {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    
    .anasayfa-banner {
        height: 250px;
        width: 345px;
    }
    
    .banner-content {
        padding: 15px;
        padding-top: 40px;
    }
    
    .banner-content h3 {
        font-size: 18px;
    }
    
    .banner-content p {
        font-size: 12px;
        -webkit-line-clamp: 1;
    }
    
    .banner-btn {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .banner-dots {
        gap: 6px;
        bottom: 10px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .event-sec-card {
        height: 180px;
    }
    
    .event-sec-logo img {
        max-width: 50px;
    }
    
    .event-sec-title {
        font-size: 13px;
    }
    
    .event-sec-description {
        font-size: 8px;
        -webkit-line-clamp: 2;
    }
    
    .social-icon-container {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .social-platform-name {
        font-size: 12px;
    }
    
    .social-redirect-grid {
        gap: 12px;
    }
    
    .scrolling-logos {
        gap: 0px;
    }
    
  .logo-item {
    height: 40px; /* Smaller logos on mobile */
    margin: 0 5px; /* Less spacing between logos */
  }
    
    .logo-item:hover {
        transform: none;
        filter: brightness(0) invert(0.9);
    }


}

/* VERY SMALL MOBILE - 400px */
@media (max-width: 400px) {
.social-platform-name {
    font-size: 11px;
}

.social-redirect-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 sÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¼tun */
    gap: 8px;
    position: relative;
    left: 0px; 
    display: gird;
    transform: scale(1.); /* biraz kÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¼ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â§ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¼ltme */
    margin-left: 0;
    padding-left: 0;
}

}
/* Card Container */
.anasayfa-card-container {
    width: 100%;
    max-width: 850px; /* Maximum width matches image size */
    margin: 0 auto;
    padding: 1px;
}

/* Individual Card */
.anasayfa-card {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 15px;
    position: relative;
}

/* Card Image - Desktop */
.anasayfa-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

/* Text Overlay */
.anasayfa-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 15px;
}

.anasayfa-card-overlay h3 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
}

.anasayfa-card-overlay p {
    margin: 0;
    font-size: 0.9rem;
}

/* Mobile Styles - Square Card (max-width: 380px) */
@media (max-width: 768px) {
    .anasayfa-card-container {
        max-width: 390px !important; /* Maksimum geniÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€¦Ã‚Â¸lik */
        margin: 0 auto; /* Ortala */
        padding: 10px;
    }

    .anasayfa-card {
        width: 100% !important; /* KartÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â±n geniÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€¦Ã‚Â¸liÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€¦Ã‚Â¸i container'a uysun */
        max-width: 380px; /* KartÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â±n maksimum geniÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€¦Ã‚Â¸liÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€¦Ã‚Â¸i */
        margin: 0 auto 15px; /* Alt boÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€¦Ã‚Â¸luk + ortala */
        display: block; /* Yan yana deÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€¦Ã‚Â¸il alt alta */
    }

    .anasayfa-card img {
        height: 0;
        padding-bottom: 100%; /* Kare gÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¶rÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¼nÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¼m */
    }

    .anasayfa-card-overlay {
        padding: 12px;
    }

    .anasayfa-card-overlay h3 {
        font-size: 1rem;
    }

    .anasayfa-card-overlay p {
        font-size: 0.8rem;
    }
}
@media (max-width: 768px) {
  .advanced-footer {
    background: none;
    backdrop-filter: blur(5px);
    padding: 20px 10px;
    width: 100%;
  }

  /* Sosyal medya bÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¶lÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¼mÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¼nÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¼ TAMAMEN kaldÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â±r */
  .footer-center-section, 
  .footer-social-media-section, 
  .footer-social-icons-container {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .footer-top-section {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 15px;	
  }
  .advanced-footer {
    min-height: 300px !important; /* Minimum 200px yÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¼kseklik */
}

  .footer-left-section {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
  }

  .footer-logo-advanced {
    font-size: 22px;
  }

  .footer-logo-advanced img {
    height: 45px;
  }

  .footer-links-section {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 14px;
  }

  .footer-right-section {
    justify-content: center;
    width: 100%;
    margin-top: 10px;
  }

  .copyright-and-logo {
    align-items: center;
  }

  .footer-copyright-advanced, 
  .copyright-text {
    text-align: center;
    font-size: 12px;
  }

  .footer-tagline-advanced {
    font-size: 12px;
    margin-bottom: 10px;
  }
}
@media (max-width: 400px) {
  .scrolling-logos-container {
    width: 100%;
    max-width: 350px; 
    margin: 0 auto;
    padding: 10px;
    overflow: hidden;
    border: 1px solid white;
    border-radius: 10px;
    position: relative;
    left: -6px;
  }
  
  .scrolling-logos {
    animation: scroll 3s linear infinite; /* Faster animation on mobile */
  }
  
  .logo-item {
    height: 40px; /* Smaller logos on mobile */
    margin: 0 5px; /* Less spacing between logos */
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-60%); /* More scroll distance for fewer logos */
    }
  }
}
@media (max-width: 768px) {
    .site-btn {
        display: none;
    }
}