/* Modern Koyu Tema Etkinlik Kartları - Temiz ve Sade Tasarım */
.etkinlik-container-new {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    background: transparent;
}

.etkinlik-row-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.etkinlik-col-new {
    width: 100%;
}

/* Ana Kart Tasarımı - Koyu Tema */
.etkinlik-card-new {
    background: var(--dark-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.etkinlik-card-new:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.3);
}

/* Kart Üst Bölümü - Logo ve Bilgiler */
.etkinlik-info-bar-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.info-label-new {
    font-size: 0.75rem;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-value-new {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFD700; /* Altın rengi */
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.etkinlik-logo-container-new {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.etkinlik-logo-img-new {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 8px;
}

/* Banner Alanı */
.etkinlik-banner-new {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.etkinlik-img-new {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9);
}

.etkinlik-card-new:hover .etkinlik-img-new {
    filter: brightness(1);
}

/* Geri Sayım Overlay - Glassmorphism Efekti */
.etkinlik-sayac-overlay-new {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.sayac-title-new {
    text-align: center;
    color: #FFD700;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.sayac-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.sayac-item-new {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.sayac-item-new:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
}

.sayac-rakam-new {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.sayac-birim-new {
    display: block;
    font-size: 0.65rem;
    color: #ccc;
    font-weight: 500;
    margin-top: 5px;
    letter-spacing: 0.5px;
}

/* İçerik Alanı */
.etkinlik-content-new {
    padding: 25px;
    background: var(--dark-bg);
}

.etkinlik-header-new {
    text-align: left;
    margin-bottom: 25px;
}

.etkinlik-baslik-new {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.etkinlik-aciklama-new {
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

/* Aksiyon Butonları */
.etkinlik-actions-new {
    margin-top: 25px;
}

.etkinlik-butonlar-new {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Modern Buton Tasarımları */
.primary-btn-new,
.secondary-btn-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.primary-btn-new {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
}

.primary-btn-new:hover {
    background: linear-gradient(135deg, #45a049 0%, #4CAF50 100%);
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.4);
}

.secondary-btn-new {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(33, 150, 243, 0.3);
}

.secondary-btn-new:hover {
    background: linear-gradient(135deg, #1976D2 0%, #2196F3 100%);
    box-shadow: 0 8px 30px rgba(33, 150, 243, 0.4);
}

.btn-icon-new {
    font-size: 1.2rem;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

.btn-text-new {
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Durum Mesajları */
.etkinlik-katildi-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
}

.etkinlik-sinir-doldu-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(244, 67, 54, 0.3);
}

.etkinlik-bitti-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    background: linear-gradient(135deg, #757575 0%, #616161 100%);
    color: white;
    opacity: 0.8;
    box-shadow: 0 4px 20px rgba(117, 117, 117, 0.2);
}

.katildi-icon-new,
.sinir-icon-new,
.bitti-icon-new {
    font-size: 1.2rem;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .etkinlik-container-new {
        padding: 20px 15px;
    }
    
    .etkinlik-row-new {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .etkinlik-info-bar-new {
        padding: 15px 20px;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .etkinlik-logo-container-new {
        width: 45px;
        height: 45px;
        order: 3;
        flex-shrink: 0;
    }
    
    .etkinlik-logo-img-new {
        width: 28px;
        height: 28px;
    }
    
    .etkinlik-banner-new {
        height: 200px;
    }
    
    .etkinlik-content-new {
        padding: 20px;
    }
    
    .etkinlik-baslik-new {
        font-size: 1.4rem;
    }
    
    .sayac-rakam-new {
        font-size: 1.3rem;
    }
    
    .etkinlik-card-new:hover {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        border-color: rgba(255, 215, 0, 0.3);
    }
}

@media (max-width: 480px) {
    .etkinlik-row-new {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .etkinlik-info-bar-new {
        padding: 12px 15px;
    }
    
    .info-item-new {
        flex: 1;
        min-width: 70px;
    }
    
    .etkinlik-logo-container-new {
        width: 40px;
        height: 40px;
    }
    
    .etkinlik-banner-new {
        height: 180px;
    }
    
    .etkinlik-sayac-overlay-new {
        bottom: 15px;
        left: 15px;
        right: 15px;
        padding: 15px;
    }
    
    .sayac-grid-new {
        gap: 10px;
    }
    
    .sayac-item-new {
        padding: 10px 6px;
    }
    
    .sayac-rakam-new {
        font-size: 1.2rem;
    }
    
    .primary-btn-new,
    .secondary-btn-new,
    .etkinlik-katildi-new,
    .etkinlik-sinir-doldu-new,
    .etkinlik-bitti-new {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
}

/* DÜNYA'NIN EN GÖZ ALICI ETKİNLİK KARTI TASARIMI */
/* Premium Ultra Modern Design - World Class Event Cards */

.etkinlik-container-new {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    background: transparent;
}

.etkinlik-row-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 25px;
}

.etkinlik-col-new {
    width: 100%;
}

/* ===== PREMIUM KART TASARIMI ===== */
.etkinlik-card-new {
    background: var(--star-card-background-color);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 15px 45px var(--star-box-shadow-color),
        0 0 0 1px var(--star-border-color);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    backdrop-filter: blur(20px);
    margin: 0 auto;
    max-width: 400px;
}

.etkinlik-card-new:hover {
    box-shadow: 
        0 25px 60px var(--star-box-shadow-color),
        0 0 0 2px rgba(var(--primary-rgb), 0.4),
        0 0 40px rgba(var(--primary-rgb), 0.2);
    animation: cardGlow 3s ease-in-out infinite;
}

/* ===== PREMIUM HEADER ===== */
.etkinlik-premium-header-new {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 25px;
    background: linear-gradient(
        135deg, 
        var(--star-navbar-bg) 0%, 
        var(--star-sidebar-button-background-color) 50%,
        var(--star-navbar-bg) 100%
    );
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.2);
    position: relative;
    overflow: hidden;
}

.etkinlik-premium-header-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb), 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.premium-stats-new {
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.stat-item-new {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    border: 1px solid var(--star-border-color);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item-new:hover {
    background: rgba(var(--primary-rgb), 0.1);
    border-color: rgba(var(--primary-rgb), 0.3);
}

.stat-icon-new {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px var(--star-box-shadow-color));
}

.prize-stat-new .stat-icon-new {
    animation: bounce 2s ease-in-out infinite;
}

.participants-stat-new .stat-icon-new {
    animation: pulse 2s ease-in-out infinite;
}

.stat-content-new {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-label-new {
    font-size: 0.7rem;
    color: var(--star-onemsiz-text-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.stat-value-new {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--star-onemli-text-color);
    text-shadow: 0 2px 4px var(--star-box-shadow-color);
    letter-spacing: -0.02em;
}

/* ===== LOGO BADGE (YENİ KONUM) ===== */
.logo-badge-new {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--star-button-background-color) 0%, var(--star-button-hover-background-color) 100%);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}

.etkinlik-logo-premium-new {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 25px;
    filter: drop-shadow(0 2px 8px var(--star-box-shadow-color));
}

/* ===== HERO SECTION ===== */
.etkinlik-hero-new {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.hero-banner-new {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-overlay-new {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.3) 0%,
        transparent 40%,
        transparent 60%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 2;
}

.hero-image-new {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    filter: brightness(0.9) contrast(1.1);
}

.etkinlik-card-new:hover .hero-image-new {
    filter: brightness(1) contrast(1.2);
}

/* ===== CONTENT SECTION ===== */
.etkinlik-content-premium-new {
    padding: 25px 25px;
    background: var(--star-card-background-color);
    position: relative;
}

.content-header-new {
    margin-bottom: 25px;
}

.title-countdown-wrapper-new {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.title-section-new {
    flex: 1;
}

.etkinlik-title-premium-new {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--star-normal-text-color);
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 8px var(--star-box-shadow-color);
}

.etkinlik-description-premium-new {
    font-size: 0.9rem;
    color: var(--star-onemsiz-text-color);
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
    font-weight: 400;
}

/* ===== INLINE COUNTDOWN ===== */
.inline-countdown-new {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 15px;
    border: 2px solid rgba(var(--primary-rgb), 0.3);
    box-shadow: 
        0 12px 28px var(--star-box-shadow-color),
        0 0 25px rgba(var(--primary-rgb), 0.2);
    min-width: 200px;
    flex-shrink: 0;
}

.countdown-title-new {
    text-align: center;
    color: var(--star-onemli-text-color);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 4px var(--star-box-shadow-color);
}

.countdown-timer-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.time-unit-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.2) 0%, rgba(var(--primary-rgb), 0.1) 100%);
    border-radius: 8px;
    padding: 8px 5px;
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    min-width: 32px;
    transition: all 0.3s ease;
}

.time-unit-new:hover {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.3) 0%, rgba(var(--primary-rgb), 0.2) 100%);
}

.time-number-new {
    font-size: 1rem;
    font-weight: 900;
    color: var(--star-onemli-text-color);
    line-height: 1;
    text-shadow: 0 2px 4px var(--star-box-shadow-color);
    animation: numberPulse 1s ease-in-out infinite;
}

.time-label-new {
    font-size: 0.55rem;
    color: var(--star-onemsiz-text-color);
    font-weight: 600;
    margin-top: 2px;
    letter-spacing: 0.6px;
    opacity: 0.9;
}

.time-separator-new {
    font-size: 1.1rem;
    color: var(--star-onemli-text-color);
    font-weight: 900;
    animation: blink 2s ease-in-out infinite;
}

/* ===== ACTION BUTTONS ===== */
.action-section-new {
    margin-top: 25px;
}

.premium-buttons-new {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-primary-premium-new,
.btn-secondary-premium-new {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.btn-primary-premium-new {
    background: linear-gradient(135deg, var(--star-button-background-color) 0%, var(--star-button-hover-background-color) 20%, var(--star-button-background-color) 40%, var(--primary-color) 60%, var(--star-button-background-color) 80%, var(--star-button-hover-background-color) 100%);
    background-size: 300% 300%;
    color: var(--star-button-text-color);
    box-shadow: 
        0 6px 24px rgba(var(--primary-rgb), 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: gradientShift 3s ease-in-out infinite;
}

.btn-primary-premium-new:hover {
    box-shadow: 
        0 12px 32px rgba(var(--primary-rgb), 0.6),
        0 0 25px rgba(var(--primary-rgb), 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: gradientShift 1s ease-in-out infinite;
}

.btn-secondary-premium-new {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--star-button-hover-background-color) 20%, var(--secondary-color) 40%, var(--star-button-background-color) 60%, var(--secondary-color) 80%, var(--star-button-hover-background-color) 100%);
    background-size: 300% 300%;
    color: var(--star-button-text-color);
    box-shadow: 
        0 6px 24px rgba(var(--primary-rgb), 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: gradientShift 3s ease-in-out infinite reverse;
}

.btn-secondary-premium-new:hover {
    box-shadow: 
        0 12px 32px rgba(var(--primary-rgb), 0.6),
        0 0 25px rgba(var(--primary-rgb), 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-glow-new {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-primary-premium-new:hover .btn-glow-new,
.btn-secondary-premium-new:hover .btn-glow-new {
    left: 100%;
}

.btn-content-new {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.btn-icon-premium-new {
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px var(--star-box-shadow-color));
}

.btn-text-premium-new {
    font-weight: 700;
    letter-spacing: 0.4px;
}

/* ===== STATUS MESSAGES ===== */
.status-joined-new,
.status-full-new,
.status-ended-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.status-joined-new {
    background: linear-gradient(135deg, var(--star-button-background-color) 0%, var(--primary-color) 100%);
    color: var(--star-button-text-color);
    box-shadow: 0 6px 24px rgba(var(--primary-rgb), 0.4);
}

.status-full-new {
    background: linear-gradient(135deg, #f44336 0%, #ef5350 100%);
    color: var(--star-normal-text-color);
    box-shadow: 0 6px 24px rgba(244, 67, 54, 0.4);
}

.status-ended-new {
    background: linear-gradient(135deg, #757575 0%, #9e9e9e 100%);
    color: var(--star-normal-text-color);
    opacity: 0.8;
    box-shadow: 0 6px 24px rgba(117, 117, 117, 0.3);
}

.status-icon-new {
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px var(--star-box-shadow-color));
}

.status-text-new {
    font-weight: 700;
    letter-spacing: 0.4px;
}

/* ===== PREMIUM ANIMASYONLAR ===== */
@keyframes cardGlow {
    0%, 100% { 
        box-shadow: 
            0 25px 60px var(--star-box-shadow-color),
            0 0 0 2px rgba(var(--primary-rgb), 0.4),
            0 0 40px rgba(var(--primary-rgb), 0.2);
    }
    50% { 
        box-shadow: 
            0 25px 60px var(--star-box-shadow-color),
            0 0 0 3px rgba(var(--primary-rgb), 0.6),
            0 0 60px rgba(var(--primary-rgb), 0.4);
    }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-4px); }
    60% { transform: translateY(-2px); }
}

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

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

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .etkinlik-row-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .etkinlik-container-new {
        padding: 20px 15px;
    }
    
    .etkinlik-row-new {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .etkinlik-premium-header-new {
        padding: 18px 20px;
    }
    
    .premium-stats-new {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-item-new {
        padding: 10px 12px;
        flex: 1;
        min-width: 140px;
    }
    
    .stat-value-new {
        font-size: 1rem;
    }
    
    .logo-badge-new {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .etkinlik-logo-premium-new {
        width: 38px;
        height: 38px;
    }
    
    .etkinlik-hero-new {
        height: 220px;
    }
    
    .title-countdown-wrapper-new {
        flex-direction: column;
        gap: 15px;
    }
    
    .inline-countdown-new {
        align-self: center;
        min-width: 240px;
    }
    
    .etkinlik-content-premium-new {
        padding: 20px 18px;
    }
    
    .etkinlik-title-premium-new {
        font-size: 1.4rem;
    }
    
    .etkinlik-card-new:hover {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        border-color: rgba(255, 215, 0, 0.3);
    }
}

@media (max-width: 480px) {
    .etkinlik-row-new {
        gap: 20px;
    }
    
    .etkinlik-premium-header-new {
        padding: 15px 18px;
    }
    
    .premium-stats-new {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    
    .stat-item-new {
        flex-direction: row;
        justify-content: center;
        padding: 8px 12px;
        min-width: auto;
    }
    
    .logo-badge-new {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .etkinlik-logo-premium-new {
        width: 32px;
        height: 32px;
    }
    
    .etkinlik-hero-new {
        height: 200px;
    }
    
    .inline-countdown-new {
        min-width: auto;
        max-width: 100%;
    }
    
    .countdown-timer-new {
        gap: 4px;
    }
    
    .time-unit-new {
        min-width: 28px;
        padding: 6px 3px;
    }
    
    .time-number-new {
        font-size: 0.9rem;
    }
    
    .time-separator-new {
        font-size: 1rem;
    }
    
    .etkinlik-title-premium-new {
        font-size: 1.3rem;
    }
    
    .btn-primary-premium-new,
    .btn-secondary-premium-new,
    .status-joined-new,
    .status-full-new,
    .status-ended-new {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
} 