:root {
    --primary-color: #159ae4;
    --secondary-color: #4ecdc4;
    --accent-color: #ffe66d;
    --background-color: #2c3e50;
    --text-color: #ffffff;
}

.sponsor-banner {
    font-size: 24px;
    font-weight: bold;
    color: #FFD700; 
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5); 
    text-align: center;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a1a, #2c3e50, #3498db);
    color: var(--text-color);
    min-height: 100vh;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: linear-gradient(145deg, #2c3e50, #3498db);
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.7);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.modal-overlay.active .modal {
    transform: scale(1);
    opacity: 1;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close-btn:hover {
    transform: rotate(90deg);
}

.bonus-amount {
    text-align: center;
    padding: 20px;
}

.bonus-image {
    width: 100%; 
    max-width: 300px;
    height: auto;
}


.cta-button {
    display: block;
    background: var(--accent-color);
    color: #333;
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 230, 109, 0.3);
}

.banners-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; 
    justify-content: center;
    margin: 20px auto; 
    max-width: 1200px;
}

.banner {
    flex: 0 1 calc(50% - 20px); 
    max-width: 580px; 
    text-align: center;
}

.banner-link img {
    width: 100%; 
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.banner-link:hover img {
    transform: scale(1.05);
}

.slogan {
    text-align: center;
    font-size: 24px;
    margin: 20px 0;
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(255, 230, 109, 0.5);
}

.side-banner {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.side-banner.left {
    left: 0;
}

.side-banner.right {
    right: 0;
}

.side-banner img {
    height: 600px;
    width: 120px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.side-banner img:hover {
    transform: scale(1.05);
}

.main-content {
    margin: 0 130px;
    padding: 20px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.grid-item:hover {
    transform: translateY(-10px);
}

.grid-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.grid-item:hover img {
    transform: scale(1.1);
}

.contact-section {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin: 10px auto;
    max-width: 1000px;
    width: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-grow: 1; 
    justify-content: center;
}

.btn {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-color);
    font-size: 24px;
    transition: all 0.3s ease;
}

.btn:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.btn::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.btn:hover::after {
    opacity: 1;
    visibility: visible;
}

.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 20px auto;
}

.info-box img {
    width: 150px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

@media (min-width: 1200px) {
    .info-boxes {
        grid-template-columns: repeat(5, 1fr);
    }
}

.info-box {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.info-box:hover {
    transform: translateY(-5px); 
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); 
    background: rgba(255, 255, 255, 0.15); 
}

.info-box img:hover {
    transform: scale(1.1);
}

.info-box .box-text {
    font-size: 1rem;
    color: #fff;
    transition: color 0.3s ease;
}

.info-box:hover .box-text {
    color: #f0f0f0;
}

a {
    text-decoration: none;
    color: #fff;
}

.contact-area {
    display: flex;         
    justify-content: center; 
    align-items: center;  
    margin: 0;            
}

.center-logo {
    max-width: 200px; 
    height: auto;   
}

.main-content {
    display: flex;
    justify-content: center; 
    align-items: center;
    flex-direction: column; 
    gap: 20px; 
}

.social {
    display: flex;
    align-items: center;
    justify-content: center; 
    gap: 10px; 
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10px 15px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    border-radius: 10px;
    color: white;
    position: relative;
    z-index: 1;
    transition: transform 0.2s ease-in-out;
}

.social-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: -1;
}

.social-button svg {
    margin-bottom: 5px;
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.social-button:hover {
    transform: scale(1.05);
}

.telegram { background: #2277FF; }
.instagram { background: #FF22BB; }
.youtube { background: #FF2222; }
.skype { background: #2244FF; }

.links {
    display: flex;
    justify-content: center; 
    gap: 10px; 
    margin: 0;
    padding: 0 !important;
}

.links a {
    font-weight: bold;
    font-size: 14px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card);
    padding: 7px 12px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease-in-out;
}

.links a:hover {
    transform: scale(1.1); 
}

.links a:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(90deg, transparent 0%, #39ff0053 100%);
    z-index: -1;
}

.links li:nth-child(2) a:before {
    background: linear-gradient(90deg, transparent 0%, #a66300 100%);
}

.links li:nth-child(3) a:before {
    background: linear-gradient(90deg, transparent 0%, #ff000053 100%);
}

.links a img {
    margin-right: 10px;
}

.links a small {
    text-transform: uppercase;
}

.links a p {
    margin: 0;
}

ul, ol {
    list-style-type: none; 
    padding-left: 0;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.8), 0 0 10px rgba(255, 215, 0, 0.6), 0 0 15px rgba(255, 215, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8), 0 0 25px rgba(255, 215, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.4);
  }
  100% {
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.8), 0 0 10px rgba(255, 215, 0, 0.6), 0 0 15px rgba(255, 215, 0, 0.4);
  }
}

.ana-sponsorlar {
  width: 90%;
  max-width: 1000px;
  height: auto;
  border: 4px solid #ffd700;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  animation: pulse 2s infinite;
}

.ana-sponsorlar::before {
  content: "ANA SPONSORLARIMIZ";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  font-weight: bold;
  color: #ffd700;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
  white-space: nowrap;
}

.ana-sponsorlar .sponsor-container {
  width: 100%;
  padding: 10px; /* Outer container'a padding ekledik */
  display: flex;
  justify-content: center;
}

.ana-sponsorlar .logo-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px; /* İç konteynır için padding ekledik */
  border-radius: 10px;,
}

.ana-sponsorlar .logo-container2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  justify-items: center;
  width: 80%; /* Logo container'ı biraz küçültüyoruz */
}

a {
  display: block;
  transition: transform 0.3s ease;
}

.logo {
  max-width: 250px;
  max-height: 250px;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

a:hover .logo {
  transform: scale(1.15);
}





@media (max-width: 768px) {
    .ana-sponsorlar {
        height: auto; 
        padding: 20px;
     }
     .ana-sponsorlar:before {
         top: 0px;
     }
     .ana-sponsorlar .logo-container2 {
        grid-template-columns: repeat(2, 1fr); 
     }
    .logo {
        max-width: 215px; 
        max-height: 215px;
    }
    .banner {
        flex: 0 1 100%; 
        max-width: none;
    }
    .side-banner {
        display: none;
    }

    .main-content {
        margin: 0;
        padding: 10px;
    }

    .info-boxes {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .info-box {
        padding: 15px;
    }

    .banner-link img {
        width: 100%; 
        height: auto; 
        max-width: 400px; 
        border-radius: 10px;
        transition: transform 0.3s ease;
    }
}

@media (max-width: 1352px) {
  .ana-sponsorlar {
    height: auto; 
    padding: 15px;
  }
  .ana-sponsorlar:before {
     top: 0px;
   }
  .ana-sponsorlar .logo-container2 {
    grid-template-columns: repeat(2, 1fr);  
  }

  .logo {
    max-width: 200px; 
    max-height: 200px;
  }

@media (max-width: 860px) {
  .ana-sponsorlar {
    height: auto; 
    padding: 15px;
  }
  .ana-sponsorlar:before {
     top: 0px;
   }
  .ana-sponsorlar .logo-container2 {
    grid-template-columns: 1fr; 
  }

  .logo {
    max-width: 200px; 
    max-height: 200px;
  }
}
