@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Exo+2:wght@300;400;500;600;700;800;900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* === ANA WRAPPER === */
.crewmedya-cuma-wrapper {
    font-family: 'Exo 2', sans-serif;
    background: linear-gradient(180deg, #0a0a1a 0%, #0d1025 40%, #100a20 70%, #0a0a1a 100%);
    color: #fff;
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

/* === GECE GOKYUZU ARKAPLAN === */
.crewmedya-cuma-cyber-grid {
    position: fixed;
    width: 100%;
    height: 100%;
    background-image:
            radial-gradient(2px 2px at 20px 30px, rgba(255, 215, 0, 0.3), transparent),
            radial-gradient(2px 2px at 40px 70px, rgba(192, 192, 192, 0.2), transparent),
            radial-gradient(1px 1px at 90px 40px, rgba(255, 215, 0, 0.4), transparent),
            radial-gradient(1px 1px at 130px 80px, rgba(192, 192, 192, 0.3), transparent),
            radial-gradient(2px 2px at 160px 30px, rgba(255, 215, 0, 0.2), transparent),
            radial-gradient(1px 1px at 200px 60px, rgba(255, 215, 0, 0.35), transparent),
            radial-gradient(1px 1px at 250px 20px, rgba(192, 192, 192, 0.25), transparent),
            radial-gradient(2px 2px at 300px 50px, rgba(255, 215, 0, 0.3), transparent);
    background-size: 350px 120px;
    animation: crewmedya-cuma-cyber-scroll 60s linear infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes crewmedya-cuma-cyber-scroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(120px); }
}

/* === GOLD & SILVER GLOW CIRCLES === */
.crewmedya-cuma-neon-system {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.crewmedya-cuma-neon-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: crewmedya-cuma-neon-float 15s ease-in-out infinite;
}

.crewmedya-cuma-neon-orb:nth-child(1) {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.6) 0%, rgba(255, 215, 0, 0.3) 50%, transparent 100%);
    top: -200px;
    left: -200px;
    animation-duration: 18s;
}

.crewmedya-cuma-neon-orb:nth-child(2) {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(192, 192, 192, 0.5) 0%, rgba(169, 169, 169, 0.25) 50%, transparent 100%);
    top: -150px;
    right: -150px;
    animation-duration: 20s;
    animation-delay: 2s;
}

.crewmedya-cuma-neon-orb:nth-child(3) {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, rgba(184, 134, 11, 0.2) 50%, transparent 100%);
    bottom: -250px;
    left: 50%;
    animation-duration: 22s;
    animation-delay: 4s;
}

.crewmedya-cuma-neon-orb:nth-child(4) {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.5) 0%, rgba(192, 192, 192, 0.25) 50%, transparent 100%);
    bottom: -200px;
    right: 10%;
    animation-duration: 16s;
    animation-delay: 1s;
}

@keyframes crewmedya-cuma-neon-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    33% {
        transform: translate(80px, -80px) scale(1.2);
        opacity: 0.6;
    }
    66% {
        transform: translate(-80px, 80px) scale(0.9);
        opacity: 0.5;
    }
}

/* === DUSEN YILDIZ & HİLAL PARTİKÜLLERİ === */
.crewmedya-cuma-lightning {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

/* Yildiz Partikulu */
.crewmedya-cuma-spark {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #FFD700;
    border-radius: 50%;
    box-shadow:
            0 0 8px #FFD700,
            0 0 20px rgba(255, 215, 0, 0.6),
            0 0 40px rgba(212, 175, 55, 0.3);
    animation: crewmedya-cuma-spark-fly var(--fall-duration, 6s) linear infinite;
}

/* Yildiz seklinde olanlar */
.crewmedya-cuma-spark.crewmedya-star-shape {
    width: 0;
    height: 0;
    background: none;
    border-radius: 0;
    font-size: var(--star-size, 22px);
    line-height: 1;
    box-shadow: none;
    color: #FFD700;
    text-shadow:
            0 0 8px rgba(255, 215, 0, 0.8),
            0 0 20px rgba(212, 175, 55, 0.5);
}

.crewmedya-cuma-spark.crewmedya-star-shape::after {
    content: '\2726';
    position: absolute;
}

/* Silver yildizlar */
.crewmedya-cuma-spark.crewmedya-silver {
    background: #C0C0C0;
    box-shadow:
            0 0 8px #C0C0C0,
            0 0 20px rgba(192, 192, 192, 0.6),
            0 0 40px rgba(192, 192, 192, 0.3);
}

.crewmedya-cuma-spark.crewmedya-star-shape.crewmedya-silver {
    color: #C0C0C0;
    text-shadow:
            0 0 8px rgba(192, 192, 192, 0.8),
            0 0 20px rgba(192, 192, 192, 0.5);
}

/* Hilal partikulu */
.crewmedya-cuma-spark.crewmedya-crescent {
    width: 0;
    height: 0;
    background: none;
    border-radius: 0;
    box-shadow: none;
    font-size: var(--crescent-size, 28px);
    line-height: 1;
    color: #FFD700;
    text-shadow:
            0 0 10px rgba(255, 215, 0, 0.8),
            0 0 25px rgba(212, 175, 55, 0.5),
            0 0 40px rgba(212, 175, 55, 0.3);
    animation: crewmedya-cuma-spark-fly var(--fall-duration, 8s) linear infinite;
}

.crewmedya-cuma-spark.crewmedya-crescent::after {
    content: '\263D';
    position: absolute;
}

.crewmedya-cuma-spark.crewmedya-crescent.crewmedya-silver {
    color: #E8E8E8;
    text-shadow:
            0 0 10px rgba(192, 192, 192, 0.8),
            0 0 25px rgba(192, 192, 192, 0.5),
            0 0 40px rgba(192, 192, 192, 0.3);
}

@keyframes crewmedya-cuma-spark-fly {
    0% {
        transform: translateY(-20px) translateX(0) rotate(0deg) scale(0.5);
        opacity: 0;
    }
    5% {
        opacity: 1;
        transform: translateY(0) translateX(0) rotate(0deg) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translateY(50vh) translateX(var(--x-drift, 30px)) rotate(180deg) scale(0.9);
    }
    95% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(105vh) translateX(var(--x-drift, 30px)) rotate(360deg) scale(0.6);
        opacity: 0;
    }
}

/* Yildiz twinkle efekti */
.crewmedya-cuma-spark.crewmedya-twinkle {
    animation: crewmedya-cuma-spark-fly var(--fall-duration, 6s) linear infinite,
    crewmedya-cuma-twinkle 1.5s ease-in-out infinite;
}

@keyframes crewmedya-cuma-twinkle {
    0%, 100% { opacity: 0.8; filter: brightness(1); }
    50% { opacity: 1; filter: brightness(1.5); }
}

/* === ANA KONTEYNER === */
.crewmedya-cuma-container {
    position: relative;
    z-index: 100;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

/* === HERO SECTION === */
.crewmedya-cuma-hero {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 0 40px;
    position: relative;
}

.crewmedya-cuma-hero-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 50%, rgba(212, 175, 55, 0.25) 0%, transparent 60%);
    filter: blur(120px);
    animation: crewmedya-cuma-hero-pulse 4s ease-in-out infinite;
}

@keyframes crewmedya-cuma-hero-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.8;
    }
}

/* === LOGO CONTAINER === */
.crewmedya-cuma-logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin-bottom: -100px;
    position: relative;
    z-index: 10;
}

.crewmedya-cuma-logo-tr,
.crewmedya-cuma-logo-pckolik {
    width: 260px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.8));
    animation: crewmedya-cuma-logo-float 4s ease-in-out infinite;
    transition: all 0.4s ease;
}

.crewmedya-cuma-logo-tr:hover,
.crewmedya-cuma-logo-pckolik:hover {
    transform: translateY(-10px) scale(1.05);
    filter: drop-shadow(0 0 50px rgba(212, 175, 55, 1))
    drop-shadow(0 0 80px rgba(255, 215, 0, 0.6));
}

@keyframes crewmedya-cuma-logo-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* === MAIN CAMPAIGN LOGO === */
.crewmedya-cuma-main-logo {
    max-width: 100%;
    width: auto;
    max-height: 400px;
    margin: 40px 0;
    filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.8))
    drop-shadow(0 0 80px rgba(255, 215, 0, 0.5));
    animation: crewmedya-cuma-main-logo-pulse 3s ease-in-out infinite;
    position: relative;
    z-index: 10;
}

@keyframes crewmedya-cuma-main-logo-pulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.8));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 60px rgba(212, 175, 55, 1))
        drop-shadow(0 0 100px rgba(255, 215, 0, 0.7));
    }
}

/* === TITLE === */
.crewmedya-cuma-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin: 30px 0 60px;
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 30%, #C0C0C0 60%, #FFD700 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: crewmedya-cuma-title-glow 4s ease-in-out infinite;
    letter-spacing: 4px;
    text-transform: uppercase;
    position: relative;
    z-index: 10;
}

@keyframes crewmedya-cuma-title-glow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
        background-position: 0% 50%;
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(212, 175, 55, 1))
        drop-shadow(0 0 60px rgba(192, 192, 192, 0.5));
        background-position: 100% 50%;
        transform: scale(1.02);
    }
}

/* === CATEGORIES GRID === */
.crewmedya-cuma-categories {
    padding: 60px 0;
    position: relative;
    z-index: 10;
}

.crewmedya-cuma-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-bottom: 60px;
}

/* === GOLD PRODUCT CARD === */
.crewmedya-cuma-card-link {
    text-decoration: none;
    display: block;
}

.crewmedya-cuma-card {
    position: relative;
    background: rgba(15, 15, 30, 0.9);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(212, 175, 55, 0.2);
    height: 100%;
    backdrop-filter: blur(10px);
}

/* GOLD/SILVER ROTATING BORDER */
.crewmedya-cuma-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
            from 0deg,
            transparent 0deg,
            #FFD700 40deg,
            #D4AF37 80deg,
            #C0C0C0 120deg,
            #E8E8E8 160deg,
            #D4AF37 200deg,
            #FFD700 240deg,
            transparent 280deg,
            transparent 360deg
    );
    animation: crewmedya-cuma-rgb-rotate 6s linear infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
}

@keyframes crewmedya-cuma-rgb-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.crewmedya-cuma-card:hover::before {
    opacity: 1;
}

/* INNER CARD */
.crewmedya-cuma-card-inner {
    position: relative;
    background: linear-gradient(145deg, rgba(20, 20, 40, 0.95) 0%, rgba(10, 10, 25, 0.98) 100%);
    border-radius: 23px;
    margin: 2px;
    height: calc(100% - 4px);
    display: flex;
    flex-direction: column;
    z-index: 1;
}

/* GOLD BACKGROUND GLOW */
.crewmedya-cuma-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 70% 70%, rgba(192, 192, 192, 0.06) 0%, transparent 50%),
            radial-gradient(circle at 50% 90%, rgba(255, 215, 0, 0.04) 0%, transparent 40%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    border-radius: 23px;
}

.crewmedya-cuma-card:hover .crewmedya-cuma-card-inner::before {
    opacity: 1;
    animation: crewmedya-cuma-rgb-pulse 2s ease-in-out infinite;
}

@keyframes crewmedya-cuma-rgb-pulse {
    0%, 100% {
        background:
                radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(192, 192, 192, 0.08) 0%, transparent 50%);
    }
    50% {
        background:
                radial-gradient(circle at 70% 70%, rgba(255, 215, 0, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    }
}

.crewmedya-cuma-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow:
            0 30px 80px rgba(212, 175, 55, 0.3),
            0 0 60px rgba(192, 192, 192, 0.15),
            inset 0 0 40px rgba(212, 175, 55, 0.05);
}

/* IMAGE SECTION */
.crewmedya-cuma-card-image {
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    overflow: hidden;
    background: #FFFFFF;
}

.crewmedya-cuma-card-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: none;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.crewmedya-cuma-card:hover .crewmedya-cuma-card-image img {
    transform: scale(1.15) rotateY(5deg);
}

/* CONTENT SECTION */
.crewmedya-cuma-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.crewmedya-cuma-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
    transition: all 0.3s ease;
}

.crewmedya-cuma-card:hover .crewmedya-cuma-card-title {
    color: #FFD700;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

/* === ALL PRODUCTS BUTTON === */
.crewmedya-cuma-all-products {
    text-align: center;
    margin: 80px 0 60px;
}

.crewmedya-cuma-all-btn-link {
    text-decoration: none;
    display: inline-block;
}

.crewmedya-cuma-all-btn {
    position: relative;
    display: inline-block;
    padding: 28px 80px;
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #0a0a1a;
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #FFD700 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
            0 20px 60px rgba(212, 175, 55, 0.5),
            0 0 80px rgba(212, 175, 55, 0.3),
            inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

/* GOLD/SILVER ANIMATED BORDER FOR BUTTON */
.crewmedya-cuma-all-btn::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(
            90deg,
            #FFD700,
            #D4AF37,
            #C0C0C0,
            #E8E8E8,
            #D4AF37,
            #FFD700
    );
    background-size: 300% 300%;
    border-radius: 50px;
    z-index: -1;
    animation: crewmedya-cuma-btn-rgb 3s linear infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
}

@keyframes crewmedya-cuma-btn-rgb {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

.crewmedya-cuma-all-btn:hover::before {
    opacity: 1;
}

.crewmedya-cuma-all-btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow:
            0 30px 90px rgba(212, 175, 55, 0.7),
            0 0 120px rgba(212, 175, 55, 0.5),
            0 0 160px rgba(192, 192, 192, 0.2),
            inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

.crewmedya-cuma-all-btn:active {
    transform: translateY(-4px) scale(1.02);
}

/* === CAMPAIGN INFO === */
.crewmedya-cuma-info {
    background: linear-gradient(145deg, rgba(25, 25, 50, 0.95) 0%, rgba(15, 15, 35, 0.98) 100%);
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    padding: 50px 60px;
    margin: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow:
            0 20px 70px rgba(0, 0, 0, 0.8),
            inset 0 2px 0 rgba(212, 175, 55, 0.1);
}

.crewmedya-cuma-info::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: crewmedya-cuma-info-pulse 5s ease-in-out infinite;
}

@keyframes crewmedya-cuma-info-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 1;
    }
}

.crewmedya-cuma-info p {
    font-size: 19px;
    line-height: 2.2;
    color: #e0e0e0;
    position: relative;
    z-index: 1;
}

.crewmedya-cuma-info strong {
    color: #FFD700;
    font-weight: 900;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* === RESPONSIVE === */
@media (max-width: 1400px) {
    .crewmedya-cuma-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .crewmedya-cuma-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .crewmedya-cuma-title {
        font-size: 38px;
    }

    .crewmedya-cuma-all-btn {
        font-size: 24px;
        padding: 24px 60px;
    }
}

@media (max-width: 768px) {
    .crewmedya-cuma-container {
        padding: 0 20px;
    }

    .crewmedya-cuma-logo-container {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }

    .crewmedya-cuma-logo-tr,
    .crewmedya-cuma-logo-pckolik {
        width: 200px;
    }

    .crewmedya-cuma-main-logo {
        max-height: 250px;
    }

    .crewmedya-cuma-title {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .crewmedya-cuma-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .crewmedya-cuma-card-image {
        height: 240px;
    }

    .crewmedya-cuma-card-title {
        font-size: 17px;
    }

    .crewmedya-cuma-all-btn {
        font-size: 20px;
        padding: 20px 50px;
        letter-spacing: 2px;
    }

    .crewmedya-cuma-info {
        padding: 40px 30px;
    }

    .crewmedya-cuma-info p {
        font-size: 17px;
        line-height: 2;
    }
}

@media (max-width: 480px) {
    .crewmedya-cuma-title {
        font-size: 24px;
        letter-spacing: 1.5px;
    }

    .crewmedya-cuma-card-image {
        height: 200px;
    }

    .crewmedya-cuma-card-title {
        font-size: 16px;
    }

    .crewmedya-cuma-all-btn {
        font-size: 18px;
        padding: 18px 40px;
    }
}

/* === SCROLL ANIMATION === */
@keyframes crewmedya-cuma-fade-up {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.crewmedya-cuma-animate {
    animation: crewmedya-cuma-fade-up 1s ease-out forwards;
    opacity: 0;
}

/* === ASILAN RAMAZAN SUSLEMELERİ === */
.crewmedya-cuma-hanging-decor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    pointer-events: none;
    overflow: visible;
}

/* Tek bir asilan eleman */
.crewmedya-cuma-hang-item {
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform-origin: top center;
    animation: crewmedya-cuma-hang-sway var(--sway-duration, 4s) ease-in-out infinite;
    animation-delay: var(--sway-delay, 0s);
    transition: transform 1.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

@keyframes crewmedya-cuma-hang-sway {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(var(--sway-angle, 3deg)); }
    75% { transform: rotate(calc(var(--sway-angle, 3deg) * -1)); }
}

/* Boncuklu zincir */
.crewmedya-cuma-chain {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.crewmedya-cuma-chain-bead {
    width: 4px;
    height: 4px;
    background: #D4AF37;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.8);
}

.crewmedya-cuma-chain-bead.crewmedya-bead-big {
    width: 6px;
    height: 6px;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.9);
}

/* Mini yildiz - zincir uzerinde */
.crewmedya-cuma-chain-star {
    color: #FFD700;
    font-size: 14px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.9), 0 0 20px rgba(212, 175, 55, 0.5);
    line-height: 1;
    animation: crewmedya-cuma-chain-twinkle 2s ease-in-out infinite;
}

@keyframes crewmedya-cuma-chain-twinkle {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

/* === FENER (LANTERN) === */
.crewmedya-cuma-lantern {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.7))
    drop-shadow(0 0 30px rgba(212, 175, 55, 0.4));
    animation: crewmedya-cuma-lantern-glow 3s ease-in-out infinite;
    animation-delay: var(--glow-delay, 0s);
}

@keyframes crewmedya-cuma-lantern-glow {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.7))
        drop-shadow(0 0 30px rgba(212, 175, 55, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(255, 215, 0, 1))
        drop-shadow(0 0 50px rgba(212, 175, 55, 0.7))
        drop-shadow(0 0 70px rgba(255, 180, 0, 0.3));
    }
}

/* Fener ust kapak */
.crewmedya-cuma-lantern-cap {
    width: var(--lantern-w, 24px);
    height: 8px;
    background: linear-gradient(180deg, #FFD700, #B8860B);
    border-radius: 3px 3px 0 0;
    position: relative;
}

.crewmedya-cuma-lantern-cap::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #FFD700;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.8);
}

/* Fener govde */
.crewmedya-cuma-lantern-body {
    width: var(--lantern-w, 24px);
    height: var(--lantern-h, 40px);
    background: linear-gradient(180deg,
    rgba(255, 215, 0, 0.9) 0%,
    rgba(255, 180, 0, 0.95) 30%,
    rgba(212, 175, 55, 0.9) 70%,
    rgba(184, 134, 11, 0.85) 100%
    );
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.6);
}

/* Fener ic isik */
.crewmedya-cuma-lantern-body::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    right: 15%;
    bottom: 15%;
    background: radial-gradient(ellipse, rgba(255, 255, 200, 0.9) 0%, rgba(255, 215, 0, 0.4) 60%, transparent 100%);
    border-radius: 4px;
    animation: crewmedya-cuma-lantern-flicker 2s ease-in-out infinite;
}

@keyframes crewmedya-cuma-lantern-flicker {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    30% { opacity: 1; transform: scale(1.05); }
    60% { opacity: 0.7; transform: scale(0.98); }
}

/* Fener dekoratif cizgiler */
.crewmedya-cuma-lantern-body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            linear-gradient(90deg, transparent 30%, rgba(255, 255, 200, 0.15) 50%, transparent 70%),
            repeating-linear-gradient(180deg, transparent, transparent 8px, rgba(184, 134, 11, 0.3) 8px, rgba(184, 134, 11, 0.3) 9px);
}

/* Fener alt */
.crewmedya-cuma-lantern-bottom {
    width: calc(var(--lantern-w, 24px) * 0.6);
    height: 6px;
    background: linear-gradient(180deg, #B8860B, #8B6914);
    border-radius: 0 0 50% 50%;
}

/* Fener alt damla isik */
.crewmedya-cuma-lantern-light {
    width: 2px;
    height: 30px;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.6), transparent);
    margin-top: 2px;
}

/* === BUYUK FENER === */
.crewmedya-cuma-lantern.crewmedya-lantern-lg {
    --lantern-w: 36px;
    --lantern-h: 56px;
}

.crewmedya-cuma-lantern.crewmedya-lantern-lg .crewmedya-cuma-lantern-cap::before {
    width: 10px;
    height: 10px;
}

.crewmedya-cuma-lantern.crewmedya-lantern-lg .crewmedya-cuma-lantern-bottom {
    height: 8px;
}

.crewmedya-cuma-lantern.crewmedya-lantern-lg .crewmedya-cuma-lantern-light {
    height: 40px;
}

/* === KUCUK FENER === */
.crewmedya-cuma-lantern.crewmedya-lantern-sm {
    --lantern-w: 18px;
    --lantern-h: 28px;
}

.crewmedya-cuma-lantern.crewmedya-lantern-sm .crewmedya-cuma-lantern-cap::before {
    width: 6px;
    height: 6px;
    top: -4px;
}

.crewmedya-cuma-lantern.crewmedya-lantern-sm .crewmedya-cuma-lantern-bottom {
    height: 4px;
}

.crewmedya-cuma-lantern.crewmedya-lantern-sm .crewmedya-cuma-lantern-light {
    height: 20px;
}

/* === ASILAN HİLAL === */
.crewmedya-cuma-hang-crescent {
    font-size: var(--hang-size, 32px);
    color: #FFD700;
    text-shadow:
            0 0 15px rgba(255, 215, 0, 0.9),
            0 0 30px rgba(212, 175, 55, 0.6),
            0 0 50px rgba(212, 175, 55, 0.3);
    line-height: 1;
    animation: crewmedya-cuma-hang-crescent-glow 3s ease-in-out infinite;
    animation-delay: var(--glow-delay, 0s);
}

@keyframes crewmedya-cuma-hang-crescent-glow {
    0%, 100% {
        text-shadow:
                0 0 15px rgba(255, 215, 0, 0.9),
                0 0 30px rgba(212, 175, 55, 0.6);
        transform: scale(1);
    }
    50% {
        text-shadow:
                0 0 25px rgba(255, 215, 0, 1),
                0 0 50px rgba(212, 175, 55, 0.8),
                0 0 70px rgba(255, 180, 0, 0.4);
        transform: scale(1.08);
    }
}

/* === ASILAN YILDIZ === */
.crewmedya-cuma-hang-star {
    font-size: var(--hang-size, 20px);
    color: #FFD700;
    text-shadow:
            0 0 12px rgba(255, 215, 0, 0.9),
            0 0 25px rgba(212, 175, 55, 0.5);
    line-height: 1;
    animation: crewmedya-cuma-chain-twinkle 2.5s ease-in-out infinite;
}

/* === RESPONSIVE HANGING === */
@media (max-width: 1024px) {
    .crewmedya-cuma-lantern.crewmedya-lantern-lg {
        --lantern-w: 28px;
        --lantern-h: 44px;
    }
    .crewmedya-cuma-chain {
        gap: 4px;
    }
    .crewmedya-cuma-chain-bead {
        width: 5px;
        height: 5px;
    }
    .crewmedya-cuma-chain-bead.crewmedya-bead-big {
        width: 7px;
        height: 7px;
    }
}

@media (max-width: 768px) {
    .crewmedya-cuma-hang-item:nth-child(2),
    .crewmedya-cuma-hang-item:nth-child(7) {
        display: none;
    }
    .crewmedya-cuma-lantern.crewmedya-lantern-lg {
        --lantern-w: 22px;
        --lantern-h: 34px;
    }
    .crewmedya-cuma-lantern {
        --lantern-w: 18px;
        --lantern-h: 28px;
    }
    .crewmedya-cuma-lantern.crewmedya-lantern-sm {
        --lantern-w: 14px;
        --lantern-h: 22px;
    }
    .crewmedya-cuma-chain {
        gap: 3px;
    }
    .crewmedya-cuma-chain-bead {
        width: 4px;
        height: 4px;
    }
    .crewmedya-cuma-chain-bead.crewmedya-bead-big {
        width: 5px;
        height: 5px;
    }
    .crewmedya-cuma-chain-star {
        font-size: 8px;
    }
    .crewmedya-cuma-hang-crescent,
    .crewmedya-cuma-hang-star {
        font-size: calc(var(--hang-size, 20px) * 0.7);
    }
}

@media (max-width: 480px) {
    .crewmedya-cuma-hang-item:nth-child(3),
    .crewmedya-cuma-hang-item:nth-child(6),
    .crewmedya-cuma-hang-item:nth-child(9) {
        display: none;
    }
    .crewmedya-cuma-lantern.crewmedya-lantern-lg {
        --lantern-w: 18px;
        --lantern-h: 28px;
    }
    .crewmedya-cuma-lantern {
        --lantern-w: 14px;
        --lantern-h: 22px;
    }
    .crewmedya-cuma-chain {
        gap: 2px;
    }
    .crewmedya-cuma-chain-bead {
        width: 3px;
        height: 3px;
    }
    .crewmedya-cuma-chain-bead.crewmedya-bead-big {
        width: 4px;
        height: 4px;
    }
    .crewmedya-cuma-chain-star {
        font-size: 6px;
    }
}

