﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    position: relative;
    background: #1a1a1a;  /* #000 yerine */
}

/* Passcode Screen */
.passcode-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.passcode-container {
    text-align: center;
    padding: 40px;
    background: rgba(26, 26, 26, 0.9);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    min-width: 300px;
    max-width: 400px;
}

.passcode-title {
    color: white;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 400;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.passcode-input-container {
    position: relative;
    margin-bottom: 20px;
}

.passcode-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    border: none;
    outline: none;
}

.passcode-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.passcode-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    transition: all 0.3s ease;
}

.passcode-dot.filled {
    background: #2d5016;
    border-color: #2d5016;
    box-shadow: 0 0 15px rgba(45, 80, 22, 0.6);
}

.passcode-error {
    color: #f44336;
    font-size: clamp(0.9rem, 2vw, 1rem);
    min-height: 20px;
    margin-top: 10px;
    transition: opacity 0.3s ease;
}

.main-content {
    display: none;
}

.background-collage {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    filter: grayscale(100%) contrast(1.5) brightness(0.7);
    opacity: 0.25;
}

.collage-track {
    position: absolute;
    left: 0;
    width: 100%;
    display: grid;
    filter: grayscale(100%) contrast(1.3) brightness(0.8);
}

.collage-track.track-a {
    top: 0;
    animation: scrollDown 60s linear infinite;
    will-change: transform;
}

.collage-track.track-b {
    top: 0;
    animation: scrollDownB 60s linear infinite;
    will-change: transform;
}

.background-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes scrollDown {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100%);
    }
}

@keyframes scrollDownB {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}


.overlay {
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 200%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 2;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-height: 90vh;
    overflow-y: auto;
}

@media (max-width: 768px) {
    .content {
        top: 60% !important;
    }
}

.hero-text {
    pointer-events: auto;
    cursor: pointer;
    margin-bottom: 30px;
}

.headline {
    color: white;
    font-size: clamp(2rem, 8vw, 6rem);
    font-weight: 400;
    line-height: 1.2;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 1),
                 0 0 40px rgba(0, 0, 0, 0.9),
                 0 0 60px rgba(0, 0, 0, 0.7),
                 2px 2px 4px rgba(0, 0, 0, 1);
    letter-spacing: 2px;
    margin-bottom: 15px;
    transition: opacity 0.5s ease;
}

.subline {
    color: white;
    font-size: clamp(1.2rem, 4vw, 2.5rem);
    font-weight: 300;
    line-height: 1.3;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 1),
                 0 0 30px rgba(0, 0, 0, 0.8),
                 0 0 50px rgba(0, 0, 0, 0.6);
    letter-spacing: 1px;
    margin-bottom: 20px;
    transition: opacity 0.5s ease;
}

.animated-line {
    min-height: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.animated-text {
    display: inline-block;
    color: #2d5016;
    font-weight: 500;
    font-size: clamp(1.5rem, 5vw, 3rem);
    position: relative;
    min-height: 1.2em;
    -webkit-text-stroke: 2px black;
    text-stroke: 2px black;
    text-shadow: 2px 2px 8px rgba(45, 80, 22, 0.8),
                 0 0 20px rgba(45, 80, 22, 0.6),
                 0 0 30px rgba(45, 80, 22, 0.4);
}

.animated-text::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #2d5016;
    animation: blink 1s infinite;
    box-shadow: 0 0 10px rgba(45, 80, 22, 0.8);
}

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

.fade-in {
    animation: fadeIn 1s ease-in;
}

.fade-out {
    animation: fadeOut 0.5s ease-out;
}

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

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.daily-quote {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    pointer-events: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 100%;
    flex-shrink: 0;
}

.quote-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 300;
    letter-spacing: 1px;
    white-space: nowrap;
    flex-shrink: 0;
}

.quote-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.5px;
    flex: 1 1 auto;
    min-width: 0;
    word-wrap: break-word;
    text-align: center;
}

.easter-egg-toast {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(45, 80, 22, 0.95);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(45, 80, 22, 0.6);
    z-index: 10;
}

.easter-egg-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(-10px);
}

/* Mobil için özel ayarlar */
@media (max-width: 768px) {
    .collage-track {
        gap: 1px;
        padding: 1px;
    }
    
    .collage-track.track-a,
    .collage-track.track-b {
        animation-play-state: running;
    }
    
    .headline {
        font-size: clamp(1.5rem, 10vw, 3rem);
        letter-spacing: 1px;
    }
    
    .subline {
        font-size: clamp(1rem, 4vw, 2rem);
    }
    
    .content {
        padding: 15px;
        top: 50% !important;
        max-height: 85vh;
    }
    
    .daily-quote {
        margin-top: 30px;
        padding-top: 15px;
        gap: 6px;
    }
    
    .quote-label {
        font-size: clamp(0.85rem, 2vw, 1rem);
    }
    
    .quote-text {
        font-size: clamp(0.85rem, 2vw, 1rem);
    }
    
    .passcode-container {
        min-width: 280px;
        padding: 30px 20px;
    }
    
    .passcode-dots {
        gap: 12px;
    }
    
    .passcode-dot {
        width: 18px;
        height: 18px;
    }
}
/* Çok küçük ekranlar için */
@media (max-width: 480px) {
    .headline {
        font-size: clamp(1.2rem, 8vw, 2.5rem);
    }
    
    .subline {
        font-size: clamp(0.9rem, 4vw, 1.8rem);
    }
    
    .daily-quote {
        margin-top: 25px;
        padding-top: 12px;
        gap: 5px;
    }
    
    .quote-label {
        font-size: clamp(0.8rem, 2vw, 0.95rem);
    }
    
    .quote-text {
        font-size: clamp(0.8rem, 2vw, 0.95rem);
    }
    
    .easter-egg-toast {
        top: -50px;
        padding: 10px 20px;
    }
}