/**
 * Reklam Panelleri CSS
 * Google AdSense uyumlu reklam alanları stilleri
 */

/* Reklam Paneli Container */
.ad-panel {
    margin: 30px 0;
    padding: 0;
    background: transparent;
    border: none;
    text-align: center;
}

.ad-panel-container {
    position: relative;
    background: #f9f9f9;
    border: 2px dashed #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

.ad-panel-container:hover {
    border-color: var(--primary-color);
    background: #f5f5f5;
}

/* Reklam Panel Header */
.ad-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.ad-label {
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.ad-size-label {
    color: var(--text-color);
    font-size: 0.75rem;
    font-weight: 500;
}

/* Reklam Panel Content */
.ad-panel-content {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 6px;
    overflow: hidden;
}

/* Reklam Placeholder */
.ad-placeholder {
    width: 100%;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.ad-placeholder-content {
    text-align: center;
    width: 100%;
}

/* Web23 Reklam Banner Stili */
.ad-banner-with-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ad-banner-with-image:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.ad-banner-with-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.ad-banner-with-image:hover img {
    transform: scale(1.05);
}

.ad-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    text-align: center;
    transition: background 0.3s ease;
}

.ad-banner-with-image:hover .ad-banner-overlay {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%);
}

@media (max-width: 768px) {
    .ad-banner-overlay {
        padding: 10px;
    }
    
    .ad-banner-overlay p {
        font-size: 0.85rem !important;
    }
    
    .ad-banner-overlay span {
        font-size: 0.75rem !important;
    }
}

/* Reklam İletişim Bilgileri */
.ad-contact-info {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    color: white;
}

.ad-contact-info p {
    margin: 0 0 15px 0;
    font-size: 1rem;
    font-weight: 600;
}

.ad-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.ad-whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

/* Google AdSense Stilleri */
.adsbygoogle {
    display: block;
    text-align: center;
    margin: 0 auto;
}

/* Sidebar Reklam */
.ad-sidebar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    z-index: 1000;
    display: none; /* Mobilde gizle */
}

.ad-sidebar-sticky {
    position: sticky;
    top: 100px;
}

/* Responsive Reklam Panelleri */
@media (max-width: 768px) {
    .ad-panel-container {
        padding: 15px;
    }
    
    .ad-panel-header {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .ad-sidebar {
        display: none !important;
    }
    
    /* Mobil için küçük reklam boyutları */
    .ad-panel[data-ad-size="leaderboard"] .ad-panel-content,
    .ad-panel[data-ad-size="billboard"] .ad-panel-content {
        min-height: 100px;
    }
}

/* Reklam Alanı Bilgilendirme */
.ad-info-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
}

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

.ad-info-banner p {
    margin: 0 0 15px 0;
    font-size: 0.95rem;
    opacity: 0.95;
}

/* Reklam Boyutları Gösterimi */
.ad-sizes-info {
    background: var(--light-color);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.ad-sizes-info h4 {
    margin: 0 0 15px 0;
    color: var(--dark-color);
}

.ad-sizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.ad-size-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    text-align: center;
}

.ad-size-item strong {
    display: block;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.ad-size-item span {
    color: var(--text-color);
    font-size: 0.85rem;
}

/* ProLabTR Reklam Düğmeleri */
.prolabtr-ad-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.prolabtr-ad-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.prolabtr-ad-button:hover::before {
    width: 300px;
    height: 300px;
}

.prolabtr-ad-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    color: white;
}

.prolabtr-ad-button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.prolabtr-ad-button i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.prolabtr-ad-button:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* ProLabTR Reklam Container */
.prolabtr-ad-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 12px;
    border: 2px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.prolabtr-ad-container:hover {
    border-color: rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    transform: scale(1.02);
}

.prolabtr-ad-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.prolabtr-ad-subtitle {
    font-size: 0.9rem;
    color: var(--text-color);
    margin: 0;
    text-align: center;
    opacity: 0.8;
}

/* Leaderboard için özel stil */
.ad-panel[data-ad-size="leaderboard"] .prolabtr-ad-container {
    flex-direction: row;
    gap: 20px;
    padding: 15px 25px;
}

.ad-panel[data-ad-size="leaderboard"] .prolabtr-ad-title {
    font-size: 1.1rem;
}

.ad-panel[data-ad-size="leaderboard"] .prolabtr-ad-button {
    padding: 12px 24px;
    font-size: 0.9rem;
}

/* Billboard için özel stil */
.ad-panel[data-ad-size="billboard"] .prolabtr-ad-container {
    padding: 30px;
    gap: 20px;
}

.ad-panel[data-ad-size="billboard"] .prolabtr-ad-title {
    font-size: 1.5rem;
}

.ad-panel[data-ad-size="billboard"] .prolabtr-ad-button {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* ProLabTR Leaderboard Reklam (728x90) */
.prolabtr-leaderboard-ad {
    display: block;
    width: 100%;
    height: 90px;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.prolabtr-ad-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    background-size: 200% 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: gradientShift 3s ease infinite;
    transition: all 0.3s ease;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.prolabtr-leaderboard-ad:hover .prolabtr-ad-bg {
    background-size: 200% 100%;
    animation: gradientShift 1.5s ease infinite;
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.prolabtr-ad-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 25px;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.prolabtr-ad-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.prolabtr-ad-logo i {
    font-size: 2rem;
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

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

.prolabtr-leaderboard-ad:hover .prolabtr-ad-logo {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(360deg);
}

.prolabtr-ad-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: white;
}

.prolabtr-ad-domain {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: block;
}

.prolabtr-leaderboard-ad:hover .prolabtr-ad-domain {
    transform: translateX(5px);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.prolabtr-ad-tagline {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.prolabtr-leaderboard-ad:hover .prolabtr-ad-tagline {
    opacity: 1;
    transform: translateX(5px);
}

.prolabtr-ad-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.prolabtr-ad-arrow i {
    font-size: 1.2rem;
    color: white;
    transition: all 0.3s ease;
}

.prolabtr-leaderboard-ad:hover .prolabtr-ad-arrow {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(10px) scale(1.1);
}

.prolabtr-leaderboard-ad:hover .prolabtr-ad-arrow i {
    transform: translateX(3px);
}

/* Sosyete Pazarım Slider Reklam */
.sosyete-slider-ad {
    width: 100%;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.slider-images {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 100%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}

.slider-content {
    text-align: center;
    color: white;
    z-index: 3;
}

.slider-domain {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 5px;
    animation: fadeInUp 0.8s ease;
}

.slider-tagline {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    opacity: 0.95;
    animation: fadeInUp 1s ease;
}

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

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

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

.dot.active {
    background: white;
    width: 20px;
    border-radius: 3px;
}

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

/* Responsive */
@media (max-width: 768px) {
    .prolabtr-ad-container {
        flex-direction: column;
        padding: 15px;
    }
    
    .prolabtr-ad-title {
        font-size: 1rem;
    }
    
    .prolabtr-ad-button {
        padding: 12px 20px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 300px;
    }
    
    .ad-panel[data-ad-size="leaderboard"] .prolabtr-ad-container {
        flex-direction: column;
    }
    
    .prolabtr-leaderboard-ad {
        height: auto;
        min-height: 90px;
    }
    
    .prolabtr-ad-content {
        flex-direction: column;
        padding: 15px;
        gap: 10px;
        text-align: center;
    }
    
    .prolabtr-ad-domain {
        font-size: 1.3rem;
    }
    
    .prolabtr-ad-tagline {
        font-size: 0.75rem;
    }
    
    .prolabtr-ad-logo {
        width: 50px;
        height: 50px;
    }
    
    .prolabtr-ad-logo i {
        font-size: 1.5rem;
    }
    
    .prolabtr-ad-arrow {
        display: none;
    }
    
    .sosyete-slider-ad {
        height: auto;
        min-height: 90px;
    }
    
    .slider-domain {
        font-size: 1.3rem;
    }
    
    .slider-tagline {
        font-size: 0.75rem;
    }
    
    .slider-dots {
        bottom: 5px;
    }
    
    .dot {
        width: 5px;
        height: 5px;
    }
    
    .dot.active {
        width: 15px;
    }
}

/* Sosyete Pazarım Billboard Slider Reklam (970x250) */
.sosyete-billboard-slider {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.billboard-slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.billboard-slider-images {
    width: 100%;
    height: 100%;
    position: relative;
}

.billboard-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.billboard-slide.active {
    opacity: 1;
    z-index: 1;
}

.billboard-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.75) 0%, rgba(118, 75, 162, 0.75) 100%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px);
}

.billboard-slider-content {
    text-align: center;
    color: white;
    z-index: 3;
    padding: 20px;
}

.billboard-slider-domain {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.6);
    margin-bottom: 10px;
    animation: fadeInUp 0.8s ease;
}

.billboard-slider-tagline {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    opacity: 0.95;
    animation: fadeInUp 1s ease;
}

.billboard-slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 4;
}

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

.billboard-dot.active {
    background: white;
    width: 30px;
    border-radius: 4px;
}

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

/* Responsive Billboard */
@media (max-width: 1024px) {
    .sosyete-billboard-slider {
        height: auto;
        min-height: 200px;
    }
    
    .billboard-slider-domain {
        font-size: 2rem;
    }
    
    .billboard-slider-tagline {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .sosyete-billboard-slider {
        height: auto;
        min-height: 180px;
    }
    
    .billboard-slider-domain {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .billboard-slider-tagline {
        font-size: 0.85rem;
    }
    
    .billboard-slider-dots {
        bottom: 10px;
    }
    
    .billboard-dot {
        width: 6px;
        height: 6px;
    }
    
    .billboard-dot.active {
        width: 20px;
    }
}



