* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
}
body {
    font-family: 'Poppins', sans-serif;
    background: #0d0d1a;
    color: #fff;
    overflow-x: hidden;
}

/* ── Animated Background Rings ── */
.bg-rings {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.ring {
    position: absolute;
    border-radius: 50%;
    border: 3px solid transparent;
    animation: floatRing linear infinite;
}
.ring:nth-child(1) {
    width: 300px; height: 300px;
    top: -80px; left: -60px;
    border-color: rgba(255, 64, 129, 0.35);
    animation-duration: 18s;
}
.ring:nth-child(2) {
    width: 200px; height: 200px;
    top: 30%; right: -40px;
    border-color: rgba(0, 230, 118, 0.3);
    animation-duration: 22s;
    animation-delay: -4s;
}
.ring:nth-child(3) {
    width: 400px; height: 400px;
    bottom: -100px; left: 20%;
    border-color: rgba(68, 138, 255, 0.25);
    animation-duration: 25s;
    animation-delay: -8s;
}
.ring:nth-child(4) {
    width: 150px; height: 150px;
    top: 50%; left: 60%;
    border-color: rgba(255, 214, 0, 0.3);
    animation-duration: 15s;
    animation-delay: -2s;
}
.ring:nth-child(5) {
    width: 250px; height: 250px;
    top: 10%; left: 45%;
    border-color: rgba(186, 104, 255, 0.3);
    animation-duration: 20s;
    animation-delay: -6s;
}
.ring:nth-child(6) {
    width: 350px; height: 350px;
    bottom: 10%; right: 10%;
    border-color: rgba(255, 109, 0, 0.25);
    animation-duration: 28s;
    animation-delay: -10s;
}
.ring:nth-child(7) {
    width: 180px; height: 180px;
    top: 70%; left: 10%;
    border-color: rgba(0, 229, 255, 0.3);
    animation-duration: 16s;
    animation-delay: -3s;
}
.ring:nth-child(8) {
    width: 280px; height: 280px;
    top: 40%; left: 25%;
    border-color: rgba(255, 82, 82, 0.2);
    animation-duration: 23s;
    animation-delay: -7s;
}
@keyframes floatRing {
    0%   { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.6; }
    25%  { transform: translate(40px, -30px) rotate(90deg) scale(1.1); opacity: 0.8; }
    50%  { transform: translate(-20px, 50px) rotate(180deg) scale(0.9); opacity: 0.5; }
    75%  { transform: translate(30px, 20px) rotate(270deg) scale(1.05); opacity: 0.7; }
    100% { transform: translate(0, 0) rotate(360deg) scale(1); opacity: 0.6; }
}

/* ── Floating color dots ── */
.dot {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    animation: floatDot ease-in-out infinite;
}
.dot:nth-child(9)  { width: 8px; height: 8px; top: 15%; left: 80%; background: #038546; animation-duration: 6s; }
.dot:nth-child(10) { width: 6px; height: 6px; top: 55%; left: 5%;  background: #00e676; animation-duration: 8s; animation-delay: -2s; }
.dot:nth-child(11) { width: 10px; height: 10px; top: 80%; left: 70%; background: #448aff; animation-duration: 7s; animation-delay: -4s; }
.dot:nth-child(12) { width: 7px; height: 7px; top: 35%; left: 90%; background: #ffd600; animation-duration: 5s; animation-delay: -1s; }
.dot:nth-child(13) { width: 9px; height: 9px; top: 65%; left: 40%; background: #ba68ff; animation-duration: 9s; animation-delay: -3s; }
@keyframes floatDot {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ── Floating Stars ── */
.star {
    position: absolute;
    opacity: 0.35;
    animation: floatStar ease-in-out infinite;
}
.star::before {
    content: '★';
    display: block;
    font-size: inherit;
    color: inherit;
}
.star:nth-child(14) { font-size: 18px; color: #ffd600; top: 8%;  left: 12%; animation-duration: 7s; }
.star:nth-child(15) { font-size: 14px; color: #038546; top: 22%; left: 72%; animation-duration: 5s; animation-delay: -1s; }
.star:nth-child(16) { font-size: 20px; color: #00e676; top: 48%; left: 88%; animation-duration: 8s; animation-delay: -3s; }
.star:nth-child(17) { font-size: 12px; color: #448aff; top: 72%; left: 18%; animation-duration: 6s; animation-delay: -2s; }
.star:nth-child(18) { font-size: 16px; color: #ba68ff; top: 60%; left: 55%; animation-duration: 9s; animation-delay: -4s; }
.star:nth-child(19) { font-size: 10px; color: #03bf64; top: 35%; left: 35%; animation-duration: 6.5s; animation-delay: -1.5s; }
.star:nth-child(20) { font-size: 15px; color: #00b0ff; top: 85%; left: 78%; animation-duration: 7.5s; animation-delay: -5s; }
@keyframes floatStar {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); opacity: 0.3; }
    25%  { transform: translateY(-12px) rotate(30deg) scale(1.15); opacity: 0.5; }
    50%  { transform: translateY(5px) rotate(-15deg) scale(0.9); opacity: 0.25; }
    75%  { transform: translateY(-8px) rotate(20deg) scale(1.1); opacity: 0.45; }
}

/* ── Floating Balloons ── */
.balloon {
    position: absolute;
    opacity: 0.3;
    animation: floatBalloon ease-in-out infinite;
}
.balloon::before {
    content: '🎈';
    display: block;
    font-size: inherit;
}
.balloon:nth-child(21) { font-size: 22px; top: 75%; left: 8%;  animation-duration: 10s; }
.balloon:nth-child(22) { font-size: 18px; top: 50%; left: 65%; animation-duration: 12s; animation-delay: -3s; }
.balloon:nth-child(23) { font-size: 16px; top: 30%; left: 92%; animation-duration: 11s; animation-delay: -5s; }
.balloon:nth-child(24) { font-size: 20px; top: 88%; left: 45%; animation-duration: 13s; animation-delay: -2s; }
.balloon:nth-child(25) { font-size: 14px; top: 15%; left: 50%; animation-duration: 9s;  animation-delay: -6s; }
@keyframes floatBalloon {
    0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0.25; }
    25%  { transform: translateY(-30px) translateX(8px) rotate(5deg); opacity: 0.4; }
    50%  { transform: translateY(-50px) translateX(-5px) rotate(-3deg); opacity: 0.2; }
    75%  { transform: translateY(-25px) translateX(10px) rotate(4deg); opacity: 0.35; }
}

/* ── Navbar ── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(13, 13, 26, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: background 0.3s;
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 64px;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo {
    font-weight: 800;
    font-size: 1.5rem;
    color: #038546;
    background: linear-gradient(135deg, #673AB7, #2196F3, #00e676, #FFEB3B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1001;
}
.logo img {
    display: block;
    max-height: 44px;
    width: auto;
}
@supports not (-webkit-background-clip: text) {
    .logo {
        color: #038546;
        -webkit-text-fill-color: initial;
    }
}
.nav-links {
    display: flex;
    gap: 8px;
    list-style: none;
}
.nav-social-mobile {
    display: none;
}
.nav-socials {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-social-link {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.nav-social-link:hover {
    transform: translateY(-2px);
    color: #fff;
    background: rgba(255,255,255,0.12);
}
.nav-social-link svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}
.nav-links a {
    text-decoration: none;
    color: #ccc;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 24px;
    transition: all 0.3s;
    position: relative;
}
.nav-links a:hover,
.nav-links a.active {
    color: #fff;
    background: rgba(255,255,255,0.1);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%; height: 2px;
    border-radius: 2px;
    transition: transform 0.3s;
}
.nav-links li:nth-child(1) a::after { background: #038546; }
.nav-links li:nth-child(2) a::after { background: #ba68ff; }
.nav-links li:nth-child(3) a::after { background: #448aff; }
.nav-links li:nth-child(4) a::after { background: #00e676; }
.nav-links li:nth-child(5) a::after { background: #ffd600; }
.nav-links a:hover::after { transform: translateX(-50%) scaleX(1); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    border-radius: 2px;
    background: #fff;
    transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links {
        position: fixed;
        top: 64px;
        left: 0; right: 0;
        background: rgba(13, 13, 26, 0.97);
        backdrop-filter: blur(16px);
        flex-direction: column;
        align-items: center;
        padding: 24px 0;
        gap: 4px;
        transform: translateY(-120%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .nav-links.open {
        transform: translateY(0);
    }
    .nav-links a {
        font-size: 1.1rem;
        padding: 12px 32px;
    }
    .nav-links .nav-cta {
        font-size: 0.65rem;
        padding: 4px 14px;
        margin-top: 8px;
    }
}

/* ── Main content ── */
.main-content {
    position: relative;
    z-index: 1;
}

/* ── Slider ── */
.slider-section {
    padding-top: 64px;
    position: relative;
}
.slider {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 400px;
    max-height: 700px;
    overflow: hidden;
}
.slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: flex-end;
}
.slide.active { opacity: 1; z-index: 2; }
.slide-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center top;
    filter: brightness(0.5);
}

/* ── Featured image (desktop right side) ── */
.slide-featured-img {
    display: none;
}
@media (min-width: 769px) {
    .slide-featured-img {
        display: block;
        position: absolute;
        right: 48px;
        top: 32px;
        z-index: 4;
        width: 340px;
        max-height: 480px;
        object-fit: cover;
        object-position: top;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(255, 64, 129, 0.15);
        animation: sway 4s ease-in-out infinite;
        border: 3px solid rgba(255,255,255,0.1);
    }
}
@keyframes sway {
    0%, 100% { transform: rotate(-2deg) translateY(0); }
    50% { transform: rotate(2deg) translateY(-10px); }
}

.slide-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(13, 13, 26, 1) 0%, rgba(13, 13, 26, 0.3) 50%, rgba(13, 13, 26, 0.1) 100%);
}
.slide-content {
    position: relative;
    z-index: 3;
    padding: 40px 48px 60px;
    max-width: 700px;
    animation: slideUp 0.6s ease-out;
}
@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.slide-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.badge-konser { background: linear-gradient(135deg, #038546, #03bf64); }
.badge-sinema { background: linear-gradient(135deg, #448aff, #00b0ff); }
.badge-tiyatro { background: linear-gradient(135deg, #ba68ff, #7c4dff); }
.badge-etkinlik { background: linear-gradient(135deg, #00e676, #00bfa5); }
.slide-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.slide-meta {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 16px;
    line-height: 1.6;
}
.slide-meta svg {
    width: 16px; height: 16px;
    vertical-align: -2px;
    margin-right: 4px;
    fill: currentColor;
}
.slide-btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    font-size: 0.9rem;
    transition: transform 0.3s, box-shadow 0.3s;
}
.slide-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.btn-konser { background: linear-gradient(135deg, #038546, #03bf64); }
.btn-sinema { background: linear-gradient(135deg, #448aff, #00b0ff); }

/* Slider dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}
.slider-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
    background: transparent;
}
.slider-dot.active {
    background: #038546;
    border-color: #038546;
    transform: scale(1.2);
}

/* Slider arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.3rem;
    transition: all 0.3s;
}
.slider-arrow:hover {
    background: rgba(255,255,255,0.2);
}
.slider-arrow.prev { left: 16px; }
.slider-arrow.next { right: 16px; }
@media (max-width: 768px) {
    .slider-arrow { display: none; }
    .slide-content { padding: 24px 24px 50px; }
    .slide-title { font-size: 1.5rem; }
}

/* ── Section Title ── */
.section-title {
    text-align: center;
    padding: 60px 24px 32px;
}
.section-title h2 {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #673AB7, #2196F3, #00e676, #FFEB3B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}
.section-title p {
    color: rgba(255,255,255,0.5);
    margin-top: 8px;
    font-size: 0.95rem;
}

/* ── Event Cards ── */
.events-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}
.event-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s;
    position: relative;
}
.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.event-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    z-index: 2;
}
.event-card.type-konser::before { background: linear-gradient(90deg, #038546, #03bf64); }
.event-card.type-sinema::before { background: linear-gradient(90deg, #448aff, #00b0ff); }
.event-card.type-tiyatro::before { background: linear-gradient(90deg, #ba68ff, #7c4dff); }
.event-card.type-etkinlik::before { background: linear-gradient(90deg, #00e676, #00bfa5); }
.card-img-wrap {
    display: block;
    width: 100%;
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.card-img-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 10, 24, 0.06) 0%, rgba(8, 10, 24, 0.18) 38%, rgba(8, 10, 24, 0.84) 100%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 55%);
    z-index: 1;
}
.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.event-card:hover .card-img-wrap img {
    transform: scale(1.08);
}
.card-date-badge {
    position: absolute;
    top: 14px; right: 14px;
    z-index: 3;
    min-width: 70px;
    background: rgba(7, 10, 22, 0.6);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 10px 12px;
    border-radius: 16px;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 12px 30px rgba(0,0,0,0.22);
}
.card-logo-stack {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: calc(100% - 110px);
}
.card-logo-chip {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border-radius: 14px;
    background: rgb(255 255 255 / 80%);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}
.card-logo-chip img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 3px 8px rgba(0,0,0,0.2));
}
.card-date-badge .day {
    font-size: 1.5rem;
    font-weight: 800;
    display: block;
    color: #fff;
}
.card-date-badge .month {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    color: rgba(255,255,255,0.82);
}
.card-type-badge {
    position: absolute;
    top: 64px; left: 14px;
    z-index: 3;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    box-shadow: 0 10px 26px rgba(0,0,0,0.2);
}
.card-overlay-meta {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 3;
}
.card-overlay-copy {
    width: 100%;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 14px 34px rgba(0,0,0,0.24);
}
.card-overlay-title {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    text-shadow: 0 4px 18px rgba(0,0,0,0.35);
    margin-bottom: 10px;
}
.card-overlay-submeta {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
}
.card-overlay-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.86);
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.card-overlay-label-status {
    min-width: 84px;
    justify-content: center;
}
.card-overlay-label-upcoming {
    color: #d8ffe7;
    background: rgba(3, 133, 70, 0.24);
    border-color: rgba(3, 191, 100, 0.28);
}
.card-overlay-label-past {
    color: #ffe2d8;
    background: rgba(195, 72, 42, 0.24);
    border-color: rgba(255, 138, 101, 0.28);
}
.card-overlay-date {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    text-shadow: 0 4px 18px rgba(0,0,0,0.35);
}
.event-card.type-konser .card-overlay-date { color: #d8ffe9; }
.event-card.type-sinema .card-overlay-date { color: #d8eeff; }
.event-card.type-tiyatro .card-overlay-date { color: #efdfff; }
.event-card.type-etkinlik .card-overlay-date { color: #ddfff9; }

@media (max-width: 640px) {
    .card-overlay-submeta {
        flex-direction: column;
        align-items: flex-start;
    }

    .card-overlay-copy {
        padding: 12px 13px;
    }

    .card-logo-stack {
        max-width: calc(100% - 96px);
    }

    .card-logo-chip {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .card-type-badge {
        top: 60px;
    }

    .card-overlay-title {
        font-size: 0.92rem;
    }

    .card-overlay-date {
        font-size: 0.84rem;
    }
}
.card-body {
    padding: 22px 24px 26px;
}
.card-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}
.card-body .card-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 16px;
}
.card-body .card-time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}
.card-body .card-time svg {
    width: 16px; height: 16px;
    fill: currentColor;
}
.card-btn {
    display: inline-block;
    margin-top: 14px;
    padding: 10px 24px;
    border-radius: 24px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
}
.card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.card-btn-konser { background: linear-gradient(135deg, #038546, #03bf64); }
.card-btn-sinema { background: linear-gradient(135deg, #448aff, #00b0ff); }
.card-btn-tiyatro { background: linear-gradient(135deg, #ba68ff, #7c4dff); }
.card-btn-etkinlik { background: linear-gradient(135deg, #00e676, #00bfa5); }

/* ── Footer ── */
footer {
    background: rgba(0,0,0,0.3);
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
    padding: 32px 24px;
    color: rgba(255,255,255,0.35);
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
}
footer .footer-logo {
    font-weight: 800;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #673AB7, #2196F3, #00e676, #FFEB3B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    display: inline-block;
}
footer .footer-logo img {
    display: block;
    max-height: 58px;
    width: auto;
    margin: 0 auto;
}

/* ── Reveal animation ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Etkinlik Bildir Button ── */
.nav-cta {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #038546, #03bf64);
    border: none;
    border-radius: 20px;
    text-decoration: none;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    white-space: nowrap;
    margin-left: 8px;
}
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 64, 129, 0.4);
}
.nav-cta.active {
    box-shadow: 0 0 0 1px rgba(255,255,255,0.18), 0 10px 24px rgba(3, 133, 70, 0.26);
}
.nav-cta-mobile {
    display: none;
}
@media (max-width: 768px) {
    .nav-cta-desktop {
        display: none;
    }
    .nav-actions {
        display: none;
    }
    .nav-cta-mobile {
        display: list-item;
    }
    .nav-social-mobile {
        display: list-item;
    }
    .nav-socials-mobile {
        justify-content: center;
        padding: 8px 12px 2px;
    }
    .nav-cta {
        margin-left: 0;
        margin-top: 6px;
        padding: 4px 12px;
        font-size: 0.6rem;
    }
}

/* ── Event Detail ── */
.event-detail-page {
    position: relative;
    z-index: 1;
    padding: 96px 24px 80px;
}
.detail-shell {
    max-width: 1200px;
    margin: 0 auto;
}
.detail-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    margin-bottom: 28px;
}
.detail-breadcrumbs a {
    color: #ffd600;
    text-decoration: none;
}
.detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 420px);
    gap: 32px;
    align-items: center;
    margin-bottom: 36px;
}
.detail-hero.detail-hero-no-media {
    grid-template-columns: minmax(0, 1fr);
}
.detail-title {
    font-size: clamp(2.1rem, 4vw, 4rem);
    line-height: 1.05;
    font-weight: 800;
    margin: 14px 0 16px;
}
.detail-lead {
    color: rgba(255,255,255,0.72);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 720px;
}
.detail-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 14px;
    margin: 28px 0;
}
.detail-fact-card,
.detail-panel,
.detail-story-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 24px;
    backdrop-filter: blur(16px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.24);
}
.detail-fact-card {
    padding: 18px 20px;
}
.detail-fact-label,
.detail-kicker {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 8px;
}
.detail-fact-card strong {
    font-size: 1rem;
    line-height: 1.4;
}
.detail-share-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}
.detail-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    width: 100%;
    padding: 0 16px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff9800, #ffd600);
    color: #121212;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
    box-shadow: 0 12px 24px rgba(255, 185, 0, 0.2);
}
.detail-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(255, 185, 0, 0.28);
}
.detail-share-btn:disabled {
    opacity: 0.72;
    cursor: wait;
    transform: none;
}
.detail-rating-card {
    display: block;
}
.detail-rating-card strong {
    display: block;
}
.detail-rating-stars {
    display: inline-flex;
    gap: 2px;
    vertical-align: middle;
}
.detail-rating-star {
    font-size: 1.05rem;
    line-height: 1;
}
.detail-rating-star.full {
    color: #ffd54a;
}
.detail-rating-star.half {
    background: linear-gradient(90deg, #ffd54a 50%, rgba(255,255,255,0.22) 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.detail-rating-star.empty {
    color: rgba(255,255,255,0.22);
}
.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}
.detail-primary-btn,
.detail-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.detail-primary-btn:hover,
.detail-secondary-btn:hover {
    transform: translateY(-2px);
}
.detail-primary-btn {
    color: #fff;
    background: linear-gradient(135deg, #038546, #03bf64);
    box-shadow: 0 14px 32px rgba(3, 133, 70, 0.28);
}
.detail-konser { background: linear-gradient(135deg, #038546, #03bf64); box-shadow: 0 14px 32px rgba(3, 133, 70, 0.28); }
.detail-sinema { background: linear-gradient(135deg, #448aff, #00b0ff); box-shadow: 0 14px 32px rgba(68, 138, 255, 0.28); }
.detail-tiyatro { background: linear-gradient(135deg, #ba68ff, #7c4dff); box-shadow: 0 14px 32px rgba(124, 77, 255, 0.28); }
.detail-etkinlik { background: linear-gradient(135deg, #00e676, #00bfa5); box-shadow: 0 14px 32px rgba(0, 230, 118, 0.28); }
.detail-secondary-btn {
    color: #fff;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
}
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.detail-tags span {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    font-size: 0.82rem;
}
.detail-hero-media {
    position: relative;
}
.detail-poster {
    width: 100%;
    border-radius: 28px;
    display: block;
    object-fit: cover;
    box-shadow: 0 28px 70px rgba(0,0,0,0.38);
    border: 1px solid rgba(255,255,255,0.1);
}
.detail-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 28px;
}
.detail-artists-panel {
    margin-bottom: 28px;
}
.detail-story-card,
.detail-panel {
    padding: 28px;
}
.detail-story-card h2,
.detail-panel h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}
.detail-richtext {
    color: rgba(255,255,255,0.78);
    line-height: 1.9;
    font-size: 0.98rem;
}
.detail-video-frame {
    position: relative;
    margin-top: 24px;
    padding-top: 56.25%;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.08);
}
.detail-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.detail-sidebar {
    display: grid;
    gap: 22px;
    align-self: start;
}
.detail-schedule-list,
.detail-artist-list {
    display: grid;
    gap: 14px;
}
.detail-artist-list-wide {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.detail-schedule-list {
    list-style: none;
}
.detail-schedule-list li,
.detail-artist-item {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}
.detail-artist-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: start;
}
.detail-artist-avatar {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(255,255,255,0.08);
}
.detail-artist-avatar-link {
    display: inline-flex;
    border-radius: 14px;
    overflow: hidden;
}
.detail-artist-name-link {
    color: rgba(255,255,255,0.94);
    text-decoration: none;
}
.detail-artist-name-link:hover {
    text-decoration: underline;
}
.detail-organizator-link {
    color: rgba(255,255,255,0.94);
    text-decoration: none;
}
.detail-organizator-link:hover {
    text-decoration: underline;
}
.detail-venue-link {
    color: rgba(255,255,255,0.94);
    text-decoration: none;
}
.detail-venue-link:hover {
    text-decoration: underline;
}
.detail-panel-text,
.detail-artist-item p {
    color: rgba(255,255,255,0.68);
    line-height: 1.7;
}
.detail-artist-link {
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    color: #ffd600;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
}
.detail-artist-link:hover {
    text-decoration: underline;
}
.detail-inline-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}
.detail-inline-links a {
    color: #ffd600;
    text-decoration: none;
    font-size: 0.9rem;
}
.detail-mini-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 14px;
    margin: 4px 0 12px;
    background: rgba(0,0,0,0.28);
    border: 1px solid rgba(255,255,255,0.14);
    overflow: hidden;
}
.detail-mini-brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 6px;
}
.detail-mini-brand-link {
    text-decoration: none;
}
.artist-page {
    position: relative;
    z-index: 1;
    padding: 96px 24px 80px;
}
.artist-hero {
    margin-bottom: 34px;
}
.artist-hero-media {
    max-width: 360px;
}
.artist-poster {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.organizator-poster {
    object-fit: contain;
    padding: 14px;
    background: rgba(0,0,0,0.22);
}
.venue-poster {
    object-fit: contain;
    padding: 14px;
    background: rgba(0,0,0,0.22);
}
.artist-inline-link {
    color: #ffd600;
    text-decoration: none;
}
.artist-inline-link:hover {
    text-decoration: underline;
}
.detail-related {
    margin-top: 44px;
}
.detail-section-title {
    padding-top: 0;
}
.event-not-found .detail-story-card {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}
.category-page {
    position: relative;
    z-index: 1;
    padding: 96px 24px 80px;
}
.category-shell {
    max-width: 1200px;
    margin: 0 auto;
}
.category-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    margin-bottom: 38px;
}
.category-title {
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    line-height: 1.05;
    font-weight: 800;
    margin: 14px 0 14px;
}
.category-lead {
    color: rgba(255,255,255,0.72);
    line-height: 1.85;
    font-size: 1rem;
    max-width: 760px;
}
.category-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin-top: 26px;
}
.category-hero-media {
    position: relative;
}
.category-hero-image {
    width: 100%;
    display: block;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: 0 28px 70px rgba(0,0,0,0.38);
    border: 1px solid rgba(255,255,255,0.1);
}
.category-section-title {
    padding-top: 0;
}
.category-empty-state .detail-story-card {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}
.archive-page {
    position: relative;
    z-index: 1;
    padding: 96px 24px 80px;
}
.archive-shell {
    max-width: 1200px;
    margin: 0 auto;
}
.archive-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 420px);
    gap: 28px;
    align-items: center;
    margin-bottom: 38px;
}
.archive-lead {
    color: rgba(255,255,255,0.72);
    line-height: 1.85;
    font-size: 1rem;
    max-width: 760px;
}
.archive-media {
    position: relative;
}
.archive-image {
    width: 100%;
    display: block;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: 0 28px 70px rgba(0,0,0,0.38);
    border: 1px solid rgba(255,255,255,0.1);
}
.archive-section-title {
    padding-top: 0;
}
.archive-empty-state .detail-story-card {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}
.submission-page {
    position: relative;
    z-index: 1;
    padding: 96px 24px 80px;
}
.submission-shell {
    max-width: 1200px;
    margin: 0 auto;
}
.submission-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 460px);
    gap: 28px;
    align-items: start;
}
.submission-copy {
    display: grid;
    gap: 20px;
}
.submission-lead-card {
    padding: 32px;
}
.submission-lead-card .detail-title {
    margin-bottom: 12px;
}
.submission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
}
.submission-benefits {
    display: grid;
    gap: 12px;
}
.submission-benefit {
    padding: 18px 20px;
}
.submission-benefit strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 8px;
}
.submission-benefit p {
    color: rgba(255,255,255,0.68);
    line-height: 1.7;
    font-size: 0.92rem;
}
.submission-form-card {
    padding: 30px;
}
.submission-form {
    display: grid;
    gap: 16px;
}
.submission-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.submission-field {
    display: grid;
    gap: 8px;
}
.submission-field-full {
    grid-column: 1 / -1;
}
.submission-field label {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.72);
}
.submission-field span {
    color: #ffd600;
}
.submission-input,
.submission-textarea,
.submission-file {
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    color: #fff;
    padding: 14px 16px;
    font: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.submission-input:focus,
.submission-textarea:focus,
.submission-file:focus {
    outline: none;
    border-color: rgba(255,214,0,0.62);
    box-shadow: 0 0 0 4px rgba(255,214,0,0.12);
    background: rgba(255,255,255,0.07);
}
.submission-input::placeholder,
.submission-textarea::placeholder {
    color: rgba(255,255,255,0.34);
}
.submission-textarea {
    min-height: 128px;
    resize: vertical;
}
.submission-file {
    padding: 12px 14px;
}
.submission-file::file-selector-button {
    margin-right: 12px;
    border: none;
    border-radius: 999px;
    padding: 10px 16px;
    font: inherit;
    font-weight: 700;
    color: #111;
    background: #ffd600;
    cursor: pointer;
}
.submission-help,
.submission-privacy {
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    font-size: 0.84rem;
}
.submission-alert {
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    line-height: 1.6;
}
.submission-alert-success {
    background: rgba(3, 191, 100, 0.14);
    border-color: rgba(3, 191, 100, 0.34);
    color: #9ff3c5;
}
.submission-alert-error {
    background: rgba(255, 99, 132, 0.12);
    border-color: rgba(255, 99, 132, 0.28);
    color: #ffb8c7;
}
.submission-toast {
    position: fixed;
    top: 88px;
    right: 24px;
    z-index: 1400;
    width: min(380px, calc(100vw - 32px));
    transform: translateX(calc(100% + 32px));
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
    pointer-events: none;
}
.submission-toast.is-visible {
    transform: translateX(0);
    opacity: 1;
}
.submission-toast.is-hiding {
    transform: translateX(calc(100% + 32px));
    opacity: 0;
}
.submission-toast-inner {
    display: grid;
    gap: 8px;
    padding: 18px 20px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(3, 133, 70, 0.96), rgba(3, 191, 100, 0.92));
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 24px 48px rgba(0,0,0,0.34);
}
.submission-toast-inner strong {
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.submission-toast-inner span {
    color: rgba(255,255,255,0.92);
    line-height: 1.6;
    font-size: 0.92rem;
}
.submission-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
@media (max-width: 960px) {
    .submission-hero {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 960px) {
    .detail-hero,
    .detail-content-grid,
    .category-hero,
    .archive-hero {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .artist-page {
        padding: 88px 18px 64px;
    }
    .event-detail-page {
        padding: 88px 18px 64px;
    }
    .category-page {
        padding: 88px 18px 64px;
    }
    .archive-page {
        padding: 88px 18px 64px;
    }
    .submission-page {
        padding: 88px 18px 64px;
    }
    .detail-story-card,
    .detail-panel {
        padding: 22px;
    }
    .submission-lead-card,
    .submission-form-card,
    .submission-benefit {
        padding: 22px;
    }
    .detail-title {
        font-size: 2rem;
    }
    .category-title {
        font-size: 2rem;
    }
    .submission-form-row {
        grid-template-columns: 1fr;
    }
    .submission-toast {
        top: 78px;
        right: 16px;
        width: calc(100vw - 32px);
    }
}
.calendar-fab {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1200;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 0 18px;
    border-radius: 999px;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, rgba(68, 138, 255, 0.96), rgba(0, 176, 255, 0.92));
    box-shadow: 0 18px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.1);
    backdrop-filter: blur(18px);
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}
.calendar-fab:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.42), 0 0 0 1px rgba(255,255,255,0.14);
}
.calendar-fab.is-active {
    background: linear-gradient(135deg, rgba(3, 133, 70, 0.96), rgba(3, 191, 100, 0.92));
}
.calendar-fab svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    flex: 0 0 auto;
}
.calendar-fab span {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    white-space: nowrap;
}
.calendar-page {
    position: relative;
    z-index: 1;
    padding: 96px 24px 100px;
}
.calendar-shell {
    max-width: 1280px;
    margin: 0 auto;
}
.calendar-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 440px);
    gap: 28px;
    align-items: stretch;
    margin-bottom: 34px;
}
.calendar-hero-card,
.calendar-panel,
.calendar-day-cell {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 24px;
    backdrop-filter: blur(16px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.24);
}
.calendar-hero-card,
.calendar-panel {
    padding: 30px;
}
.calendar-hero-card .detail-title {
    margin-bottom: 12px;
}
.calendar-lead {
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
    font-size: 1rem;
}
.calendar-month-title {
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.05;
    font-weight: 800;
    margin: 14px 0 18px;
}
.calendar-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 14px;
    margin-top: 26px;
}
.calendar-nav-card {
    display: grid;
    gap: 18px;
    align-content: start;
}
.calendar-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.calendar-nav-title {
    font-size: 1.35rem;
    font-weight: 700;
}
.calendar-nav-actions {
    display: flex;
    gap: 10px;
}
.calendar-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}
.calendar-nav-btn:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.12);
}
.calendar-nav-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}
.calendar-nav-caption,
.calendar-panel-text {
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
}
.calendar-grid-shell {
    overflow-x: auto;
    padding-bottom: 8px;
}
.calendar-grid {
    min-width: 920px;
}
.calendar-weekdays,
.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 12px;
}
.calendar-weekdays {
    margin-bottom: 12px;
}
.calendar-weekday,
.calendar-day-cell {
    border-radius: 22px;
}
.calendar-weekday {
    padding: 14px 10px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
}
.calendar-day-cell {
    min-height: 180px;
    padding: 14px;
    display: grid;
    align-content: start;
    gap: 10px;
}
.calendar-day-cell.is-other-month {
    opacity: 0.4;
}
.calendar-day-cell.is-today {
    border-color: rgba(255,214,0,0.5);
    box-shadow: 0 18px 38px rgba(255,214,0,0.08);
}
.calendar-day-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-weight: 700;
    color: #fff;
    background: rgba(255,255,255,0.08);
}
.calendar-day-cell.is-today .calendar-day-number {
    background: #ffd600;
    color: #111;
}
.calendar-day-events {
    display: grid;
    gap: 8px;
}
.calendar-event-link {
    display: grid;
    gap: 4px;
    text-decoration: none;
    color: #fff;
    padding: 10px 12px;
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.calendar-event-link.type-konser {
    background: linear-gradient(135deg, rgba(3, 133, 70, 0.32), rgba(3, 191, 100, 0.2));
    border-color: rgba(3, 191, 100, 0.42);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 10px 24px rgba(3, 133, 70, 0.18);
}
.calendar-event-link.type-sinema {
    background: linear-gradient(135deg, rgba(68, 138, 255, 0.34), rgba(0, 176, 255, 0.22));
    border-color: rgba(68, 138, 255, 0.42);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 10px 24px rgba(68, 138, 255, 0.18);
}
.calendar-event-link.type-tiyatro {
    background: linear-gradient(135deg, rgba(186, 104, 255, 0.34), rgba(124, 77, 255, 0.24));
    border-color: rgba(186, 104, 255, 0.42);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 10px 24px rgba(124, 77, 255, 0.18);
}
.calendar-event-link.type-etkinlik {
    background: linear-gradient(135deg, rgba(255, 167, 38, 0.3), rgba(255, 214, 0, 0.18));
    border-color: rgba(255, 193, 7, 0.38);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 10px 24px rgba(255, 193, 7, 0.16);
}
.calendar-event-link:hover {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.08);
}
.calendar-event-time {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffd600;
}
.calendar-event-title {
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.35;
}
.calendar-event-meta {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
}
.calendar-more-note {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
}
.calendar-empty {
    text-align: center;
}
@media (max-width: 960px) {
    .calendar-hero {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .calendar-page {
        padding: 88px 16px 96px;
    }
    .calendar-hero-card,
    .calendar-panel {
        padding: 22px;
    }
    .calendar-fab {
        right: 16px;
        bottom: 16px;
        min-height: 54px;
        padding: 0 16px;
    }
    .calendar-fab span {
        font-size: 0.74rem;
    }
    .calendar-grid {
        min-width: 760px;
    }
    .calendar-day-cell {
        min-height: 160px;
        padding: 12px;
    }
}