/* ========================================
   ŞAIRLER SOKAĞI - ANA STILLER
   Modern, Animasyonlu, Premium Tasarım
   ======================================== */

/* CSS Değişkenleri */
:root {
    /* Renk Paleti */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gold-gradient: linear-gradient(135deg, #f5af19 0%, #f12711 100%);
    --night-gradient: linear-gradient(135deg, #0c1445 0%, #1a1a2e 50%, #16213e 100%);
    --card-gradient: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));

    /* Temel Renkler */
    --bg-dark: #0f0f1a;
    --bg-card: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --border-color: rgba(255, 255, 255, 0.1);
    --glow-color: rgba(102, 126, 234, 0.5);

    /* Boyutlar */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;

    /* Gölgeler */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px var(--glow-color);

    /* Geçişler */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--night-gradient);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Parçacık Animasyonu */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* ========================================
   GİRİŞ EKRANI
   ======================================== */

.intro-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    display: none;
}

.intro-section.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.intro-content {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
}

.intro-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    animation: pulse 2s infinite, float-icon 3s infinite ease-in-out;
    box-shadow: var(--shadow-glow);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }

    50% {
        box-shadow: 0 0 0 30px rgba(102, 126, 234, 0);
    }
}

@keyframes float-icon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.intro-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.title-word {
    display: block;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow-text 3s infinite;
}

.title-word:nth-child(2) {
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    animation-delay: 0.5s;
}

@keyframes glow-text {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.2);
    }
}

.intro-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.intro-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.intro-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Butonlar */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius-lg);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-md), 0 0 30px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-lg), 0 0 50px rgba(102, 126, 234, 0.5);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-15px);
    }

    60% {
        transform: translateX(-50%) translateY(-7px);
    }
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-secondary);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--text-secondary);
    border-radius: 2px;
    animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

/* Intro Decoration */
.intro-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.book,
.quill {
    position: absolute;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.1);
    animation: float-decoration 6s infinite ease-in-out;
}

.book-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.book-2 {
    top: 60%;
    right: 8%;
    animation-delay: 1s;
}

.book-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}

.quill {
    top: 30%;
    right: 15%;
    animation-delay: 3s;
}

@keyframes float-decoration {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* ========================================
   MODAL
   ======================================== */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: var(--border-radius-xl);
    padding: 2.5rem;
    max-width: 600px;
    width: 100%;
    position: relative;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.modal-content h2 i {
    color: #f5af19;
}

.about-content h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
}

.about-content h3 i {
    color: #667eea;
}

.about-content p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-content ul {
    list-style: none;
    margin-left: 1.5rem;
}

.about-content ul li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.about-content ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #f093fb;
}

/* ========================================
   ŞAİRLER SOKAĞI - 3D SOKAK GÖRÜNÜMÜ
   ======================================== */

.street-section {
    min-height: 100vh;
    display: none;
    flex-direction: column;
    position: relative;
    z-index: 10;
    overflow: hidden;
    background: linear-gradient(180deg,
            #0a0a1a 0%,
            #1a1a3a 30%,
            #2d2d5a 60%,
            #3d3d6a 100%);
}

.street-section.active {
    display: flex;
    animation: fadeIn 0.5s ease;
}

/* Gökyüzü */
.sky {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg,
            #0a0a1a 0%,
            #1a1a3a 50%,
            #2d2d5a 100%);
    overflow: hidden;
}

/* Ay */
.moon {
    position: absolute;
    top: 10%;
    right: 15%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at 30% 30%,
            #fffde7 0%,
            #fff9c4 50%,
            #ffe082 100%);
    border-radius: 50%;
    box-shadow:
        0 0 20px rgba(255, 253, 231, 0.5),
        0 0 60px rgba(255, 253, 231, 0.3),
        0 0 100px rgba(255, 253, 231, 0.2),
        inset -10px -5px 20px rgba(0, 0, 0, 0.1);
    animation: moonGlow 4s ease-in-out infinite;
}

@keyframes moonGlow {

    0%,
    100% {
        box-shadow:
            0 0 20px rgba(255, 253, 231, 0.5),
            0 0 60px rgba(255, 253, 231, 0.3),
            0 0 100px rgba(255, 253, 231, 0.2);
    }

    50% {
        box-shadow:
            0 0 30px rgba(255, 253, 231, 0.7),
            0 0 80px rgba(255, 253, 231, 0.4),
            0 0 120px rgba(255, 253, 231, 0.3);
    }
}

/* Yıldızlar */
.stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: white;
    border-radius: 50%;
    animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Kayan Yıldız */
.shooting-star {
    position: absolute;
    top: 20%;
    left: -100px;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.8),
            white);
    border-radius: 50%;
    animation: shootingStar 8s ease-in-out infinite;
    animation-delay: 3s;
}

@keyframes shootingStar {
    0% {
        left: -100px;
        top: 15%;
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    30% {
        left: 100%;
        top: 30%;
        opacity: 0;
    }

    100% {
        left: 100%;
        top: 30%;
        opacity: 0;
    }
}

/* Sokak Başlığı */
.street-header {
    position: relative;
    z-index: 100;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.street-title {
    flex: 1;
    text-align: center;
}

.street-sign {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #8B4513 0%, #654321 50%, #8B4513 100%);
    padding: 0.75rem 2rem;
    border-radius: 8px;
    border: 4px solid #5D3A1A;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
    position: relative;
}

.street-sign::before,
.street-sign::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 8px;
    height: 80px;
    background: linear-gradient(180deg, #5D3A1A 0%, #3D2A1A 100%);
    border-radius: 4px;
}

.street-sign::before {
    left: -20px;
    transform: translateY(-50%);
}

.street-sign::after {
    right: -20px;
    transform: translateY(-50%);
}

.street-sign i {
    font-size: 1.5rem;
    color: #FFD700;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.street-sign h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #FFE4B5;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.street-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.btn-back {
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 100;
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* 3D Sokak Perspektifi */
.street-perspective {
    flex: 1;
    display: flex;
    position: relative;
    padding: 2rem;
    padding-top: 0;
    gap: 0;
    min-height: 600px;
}

/* Sokak Kenarları */
.street-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
    position: relative;
}

.left-side {
    align-items: flex-end;
    padding-right: 0.5rem;
}

.right-side {
    align-items: flex-start;
    padding-left: 0.5rem;
}

/* Sokak Yolu */
.street-road {
    width: 120px;
    min-width: 120px;
    background: linear-gradient(180deg,
            #4a4a4a 0%,
            #3a3a3a 50%,
            #2a2a2a 100%);
    position: relative;
    border-left: 3px solid #5a5a5a;
    border-right: 3px solid #5a5a5a;
    box-shadow:
        inset 0 0 30px rgba(0, 0, 0, 0.5),
        -5px 0 20px rgba(0, 0, 0, 0.3),
        5px 0 20px rgba(0, 0, 0, 0.3);
}

/* Kaldırım Taşları Deseni */
.cobblestone-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(ellipse 15px 10px at 20px 20px, rgba(80, 80, 80, 0.5) 0%, transparent 50%),
        radial-gradient(ellipse 15px 10px at 60px 40px, rgba(90, 90, 90, 0.5) 0%, transparent 50%),
        radial-gradient(ellipse 15px 10px at 100px 20px, rgba(70, 70, 70, 0.5) 0%, transparent 50%),
        radial-gradient(ellipse 15px 10px at 40px 70px, rgba(85, 85, 85, 0.5) 0%, transparent 50%),
        radial-gradient(ellipse 15px 10px at 80px 90px, rgba(75, 75, 75, 0.5) 0%, transparent 50%);
    background-size: 120px 100px;
    opacity: 0.6;
}

.road-center-line {
    position: absolute;
    left: 50%;
    top: 10%;
    bottom: 10%;
    width: 4px;
    transform: translateX(-50%);
    background: repeating-linear-gradient(180deg,
            #FFD700 0px,
            #FFD700 30px,
            transparent 30px,
            transparent 60px);
    opacity: 0.6;
    border-radius: 2px;
}

/* Yürüyen Kedi */
.walking-cat {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    animation: catWalk 10s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

@keyframes catWalk {

    0%,
    100% {
        left: 20%;
        transform: translateX(-50%) scaleX(1);
    }

    45% {
        left: 80%;
        transform: translateX(-50%) scaleX(1);
    }

    50% {
        left: 80%;
        transform: translateX(-50%) scaleX(-1);
    }

    95% {
        left: 20%;
        transform: translateX(-50%) scaleX(-1);
    }
}

/* Ev (House) Stili */
.house {
    width: 100%;
    max-width: 200px;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    animation: houseAppear 0.6s ease backwards;
}

.house:nth-child(1) {
    animation-delay: 0.1s;
}

.house:nth-child(2) {
    animation-delay: 0.2s;
}

.house:nth-child(3) {
    animation-delay: 0.3s;
}

.house:nth-child(4) {
    animation-delay: 0.4s;
}

.house:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes houseAppear {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.house:hover {
    transform: translateY(-10px) scale(1.03);
}

.house:hover .window-light {
    opacity: 1;
}

.house:hover .house-door {
    background: linear-gradient(180deg, #8B4513 0%, #5D3010 100%);
}

/* Ev Çatısı */
.house-roof {
    height: 50px;
    background: linear-gradient(135deg, #8B0000 0%, #B22222 50%, #8B0000 100%);
    clip-path: polygon(5% 100%, 50% 10%, 95% 100%);
    position: relative;
    border-top: 2px solid #600000;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
}

.chimney {
    position: absolute;
    top: 20%;
    right: 25%;
    width: 20px;
    height: 30px;
    background: linear-gradient(180deg, #5a4a4a 0%, #3a2a2a 100%);
    border-radius: 3px 3px 0 0;
}

.chimney::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -3px;
    width: 26px;
    height: 8px;
    background: #4a3a3a;
    border-radius: 2px;
}

/* Ev Gövdesi */
.house-body {
    background: linear-gradient(180deg,
            #FFF8DC 0%,
            #F5DEB3 30%,
            #DEB887 70%,
            #D2B48C 100%);
    padding: 1rem;
    border-radius: 0 0 8px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    min-height: 150px;
    position: relative;
    border: 3px solid #8B7355;
    border-top: none;
    box-shadow:
        inset 0 0 20px rgba(139, 115, 85, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Tuğla Efekti */
.house-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(90deg, rgba(139, 115, 85, 0.1) 1px, transparent 1px),
        linear-gradient(180deg, rgba(139, 115, 85, 0.1) 1px, transparent 1px);
    background-size: 20px 10px;
    pointer-events: none;
}

/* Ev Penceresi */
.house-window {
    width: 55px;
    height: 55px;
    background: linear-gradient(180deg,
            #1a1a3a 0%,
            #2a2a4a 100%);
    border-radius: 8px 8px 4px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #FFD700;
    position: relative;
    border: 4px solid #8B7355;
    box-shadow:
        inset 0 0 15px rgba(0, 0, 0, 0.5),
        0 5px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

/* Pencere Cam Bölmeleri */
.house-window::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: #8B7355;
    transform: translateX(-50%);
}

.house-window::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background: #8B7355;
    transform: translateY(-50%);
}

.house-window i {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
}

/* Pencere Işığı */
.window-light {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle,
            rgba(255, 200, 100, 0.4) 0%,
            rgba(255, 180, 50, 0.2) 50%,
            transparent 70%);
    opacity: 0.5;
    transition: opacity var(--transition-normal);
    animation: windowFlicker 4s ease-in-out infinite;
}

@keyframes windowFlicker {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.7;
    }

    52% {
        opacity: 0.4;
    }

    54% {
        opacity: 0.6;
    }
}

/* Ev Kapısı */
.house-door {
    width: 40px;
    height: 60px;
    background: linear-gradient(180deg, #654321 0%, #4a3010 100%);
    border-radius: 20px 20px 0 0;
    position: relative;
    border: 3px solid #3D2817;
    box-shadow:
        inset 0 0 10px rgba(0, 0, 0, 0.4),
        0 5px 10px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-normal);
}

.door-frame {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 0;
    background: linear-gradient(180deg, #5D3A1A 0%, #3D2510 100%);
    border-radius: 15px 15px 0 0;
}

.door-panel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px 8px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.door-handle {
    position: absolute;
    right: 5px;
    top: 50%;
    width: 6px;
    height: 6px;
    background: #FFD700;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

/* Ev Plakası (İsim) */
.house-plaque {
    background: linear-gradient(135deg, #2C1810 0%, #1a0f0a 100%);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    border: 2px solid #8B7355;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
    min-width: 100%;
}

.plaque-number {
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #2C1810;
}

.plaque-name {
    font-size: 0.7rem;
    font-weight: 600;
    color: #F5DEB3;
    text-align: center;
    line-height: 1.2;
}

/* Çiçek Kutusu */
.house-flower-box {
    margin-top: -5px;
    font-size: 1rem;
    text-align: center;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3));
}

/* Sokak Lambası */
.street-lamp {
    position: relative;
    width: 50px;
    height: 150px;
    margin-top: 1rem;
}

.street-lamp.left {
    align-self: flex-end;
    margin-right: -10px;
}

.street-lamp.right {
    align-self: flex-start;
    margin-left: -10px;
}

.lamp-post {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 120px;
    background: linear-gradient(90deg, #2a2a2a 0%, #4a4a4a 50%, #2a2a2a 100%);
    border-radius: 4px;
}

.lamp-head {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 40px;
}

.lamp-glass {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(255, 200, 100, 0.9) 0%,
            rgba(255, 180, 50, 0.7) 100%);
    border-radius: 6px 6px 0 0;
    border: 3px solid #3a3a3a;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 20px rgba(255, 200, 100, 0.6),
        0 0 40px rgba(255, 180, 50, 0.4),
        inset 0 0 15px rgba(255, 255, 255, 0.3);
    animation: lampGlow 3s ease-in-out infinite;
}

@keyframes lampGlow {

    0%,
    100% {
        box-shadow:
            0 0 20px rgba(255, 200, 100, 0.6),
            0 0 40px rgba(255, 180, 50, 0.4);
    }

    50% {
        box-shadow:
            0 0 30px rgba(255, 200, 100, 0.8),
            0 0 60px rgba(255, 180, 50, 0.5);
    }
}

.lamp-flame {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 15px;
    background: linear-gradient(180deg,
            #FFD700 0%,
            #FF8C00 50%,
            #FF4500 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: flame 0.5s ease-in-out infinite alternate;
}

@keyframes flame {
    from {
        transform: translateX(-50%) scale(1) rotate(-2deg);
    }

    to {
        transform: translateX(-50%) scale(1.1) rotate(2deg);
    }
}

.lamp-light-cone {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 80px solid rgba(255, 200, 100, 0.15);
    filter: blur(5px);
    pointer-events: none;
}

/* Uçan Kuşlar */
.flying-bird {
    position: absolute;
    font-size: 1.5rem;
    animation: birdFly 15s linear infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.bird-1 {
    top: 15%;
    animation-delay: 0s;
}

.bird-2 {
    top: 25%;
    animation-delay: 7s;
}

@keyframes birdFly {
    0% {
        left: -5%;
        transform: translateY(0) scaleX(1);
    }

    25% {
        transform: translateY(-20px) scaleX(1);
    }

    50% {
        left: 105%;
        transform: translateY(0) scaleX(1);
    }

    51% {
        transform: scaleX(-1);
    }

    75% {
        transform: translateY(-15px) scaleX(-1);
    }

    100% {
        left: -5%;
        transform: translateY(0) scaleX(-1);
    }
}

/* Sokak Dekorasyonları Container */
.street-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 5;
}

/* ========================================
   ŞAİR ODASI
   ======================================== */

.room-section {
    min-height: 100vh;
    display: none;
    flex-direction: column;
    position: relative;
    z-index: 10;
    padding: 1rem;
}

.room-section.active {
    display: flex;
    animation: fadeIn 0.5s ease;
}

.room-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.room-header .btn-back {
    position: static;
    transform: none;
    flex-shrink: 0;
    gap: 0.5rem;
    width: auto;
    padding: 0.75rem 1.25rem;
    border-radius: var(--border-radius-md);
    font-size: 0.9rem;
}

.room-header .btn-back:hover {
    transform: scale(1.05);
}

.room-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    flex: 1;
}

.room-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

/* Şair Kartı */
.poet-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-xl);
    border: 1px solid var(--border-color);
}

.poet-avatar {
    width: 100px;
    height: 100px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
}

.poet-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.poet-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
}

.poet-years {
    color: var(--text-secondary);
    font-size: 1rem;
}

.poet-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gold-gradient);
    border-radius: var(--border-radius-lg);
    font-size: 0.85rem;
    font-weight: 600;
    width: fit-content;
}

/* Tab Navigasyonu */
.room-tabs {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem;
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    overflow-x: auto;
}

.tab-btn {
    flex: 1;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
}

.tab-btn i {
    font-size: 1.25rem;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.tab-btn.active {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-md);
}

/* Tab İçerikleri */
.tab-content {
    flex: 1;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-pane.active {
    display: block;
}

/* Biyografi */
.bio-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bio-card {
    padding: 2rem;
    background: var(--card-gradient);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-xl);
    border: 1px solid var(--border-color);
}

.bio-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bio-card h4 i {
    color: #667eea;
}

.bio-card p {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.05rem;
}

.bio-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background: var(--card-gradient);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
}

.highlight-item i {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.highlight-item span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Şiir */
.poem-section {
    padding: 2rem;
    background: var(--card-gradient);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-xl);
    border: 1px solid var(--border-color);
}

.poem-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.poem-header h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.poem-header h4 i {
    color: #f093fb;
}

.btn-listen {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--accent-gradient);
    border: none;
    border-radius: var(--border-radius-md);
    color: white;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-listen:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-listen.playing {
    animation: pulse-btn 1s infinite;
}

@keyframes pulse-btn {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.poem-content {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-primary);
    white-space: pre-line;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius-lg);
    border-left: 4px solid #f093fb;
    max-height: 400px;
    overflow-y: auto;
}

.poem-content::-webkit-scrollbar {
    width: 6px;
}

.poem-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.poem-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.poem-author {
    text-align: right;
    font-style: italic;
    color: var(--text-secondary);
    margin-top: 1.5rem;
    font-size: 1.1rem;
}

/* Şiir Seçici */
.poem-selector {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.selector-label {
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.selector-label i {
    color: #f093fb;
}

.poem-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.poem-btn {
    padding: 0.6rem 1.2rem;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.poem-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.poem-btn.active {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

.poem-btn .audio-icon {
    font-size: 0.75rem;
    color: #4ade80;
}

.poem-btn.active .audio-icon {
    color: white;
}

/* Tema */
.theme-section {
    padding: 2rem;
    background: var(--card-gradient);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-xl);
    border: 1px solid var(--border-color);
}

.theme-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.theme-section h4 i {
    color: #ffd93d;
}

.theme-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.theme-tag {
    padding: 0.75rem 1.25rem;
    background: var(--primary-gradient);
    border-radius: var(--border-radius-lg);
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    animation: tagAppear 0.3s ease backwards;
}

.theme-tag:nth-child(1) {
    animation-delay: 0.1s;
}

.theme-tag:nth-child(2) {
    animation-delay: 0.2s;
    background: var(--secondary-gradient);
}

.theme-tag:nth-child(3) {
    animation-delay: 0.3s;
    background: var(--accent-gradient);
}

.theme-tag:nth-child(4) {
    animation-delay: 0.4s;
    background: var(--gold-gradient);
}

.theme-tag:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes tagAppear {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.theme-explanation {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius-lg);
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Ses Oynatıcı */
.audio-container {
    margin: 1.5rem 0;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-md);
    padding: 1rem;
}

.audio-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.audio-label i {
    width: 35px;
    height: 35px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    animation: pulse-mic 2s infinite;
}

@keyframes pulse-mic {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.5);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(102, 126, 234, 0);
    }
}

.audio-container audio {
    width: 100%;
    height: 50px;
    border-radius: var(--border-radius-md);
    background: rgba(0, 0, 0, 0.3);
}

.audio-container audio::-webkit-media-controls-panel {
    background: linear-gradient(180deg, rgba(50, 50, 70, 0.9), rgba(30, 30, 50, 0.95));
}

.audio-container audio:focus {
    outline: none;
}

/* Quiz */
.quiz-section {
    padding: 2rem;
    background: var(--card-gradient);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-xl);
    border: 1px solid var(--border-color);
}

.quiz-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.quiz-header h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.quiz-header h4 i {
    color: #4facfe;
}

.quiz-score {
    padding: 0.75rem 1.25rem;
    background: var(--accent-gradient);
    border-radius: var(--border-radius-lg);
    font-weight: 700;
    font-size: 1.1rem;
}

.quiz-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quiz-question {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius-lg);
    animation: slideIn 0.4s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.quiz-question h5 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 0.5rem;
}

.quiz-question h5 span {
    background: var(--primary-gradient);
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quiz-option {
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.quiz-option:hover:not(.disabled) {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

.quiz-option.correct {
    background: rgba(46, 213, 115, 0.2);
    border-color: #2ed573;
}

.quiz-option.wrong {
    background: rgba(255, 71, 87, 0.2);
    border-color: #ff4757;
}

.quiz-option.disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.quiz-option .option-letter {
    width: 30px;
    height: 30px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.quiz-restart {
    margin-top: 1.5rem;
}

/* ========================================
   RESPONSIVE TASARIM
   ======================================== */

@media (max-width: 768px) {
    .intro-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .intro-buttons {
        flex-direction: column;
    }

    .btn {
        justify-content: center;
    }

    /* Sokak Responsive */
    .street-perspective {
        flex-direction: column;
        padding: 1rem;
        min-height: auto;
    }

    .street-side {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        padding: 0.5rem;
    }

    .left-side,
    .right-side {
        align-items: center;
        padding: 0;
    }

    .street-road {
        width: 100%;
        min-width: 100%;
        height: 60px;
        order: 0;
        margin: 1rem 0;
    }

    .left-side {
        order: 1;
    }

    .right-side {
        order: 2;
    }

    .road-center-line {
        top: 50%;
        bottom: auto;
        left: 10%;
        right: 10%;
        width: auto;
        height: 4px;
        transform: translateY(-50%);
        background: repeating-linear-gradient(90deg,
                #FFD700 0px,
                #FFD700 30px,
                transparent 30px,
                transparent 60px);
    }

    .walking-cat {
        bottom: 50%;
        transform: translateY(50%) translateX(-50%);
    }

    .house {
        max-width: 140px;
    }

    .house-body {
        min-height: 120px;
        padding: 0.75rem;
        gap: 0.4rem;
    }

    .house-window {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .house-door {
        width: 32px;
        height: 50px;
    }

    .house-roof {
        height: 40px;
    }

    .plaque-name {
        font-size: 0.6rem;
    }

    .street-lamp {
        display: none;
    }

    .moon {
        width: 50px;
        height: 50px;
        top: 5%;
        right: 10%;
    }

    .street-sign {
        padding: 0.5rem 1rem;
    }

    .street-sign h2 {
        font-size: 1.2rem;
    }

    .street-sign::before,
    .street-sign::after {
        display: none;
    }

    .flying-bird {
        font-size: 1rem;
    }

    .poet-card {
        flex-direction: column;
        text-align: center;
    }

    .poet-avatar {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .poet-info h3 {
        font-size: 1.5rem;
    }

    .room-tabs {
        -webkit-overflow-scrolling: touch;
    }

    .tab-btn {
        min-width: 70px;
        padding: 0.75rem 0.5rem;
    }

    .tab-btn span {
        font-size: 0.75rem;
    }

    .poem-content {
        font-size: 1rem;
        padding: 1rem;
        max-height: 300px;
    }

    .bio-card,
    .poem-section,
    .theme-section,
    .quiz-section {
        padding: 1.5rem;
    }

    .street-header h2 {
        font-size: 1.5rem;
    }

    .btn-back {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .room-header .btn-back {
        padding: 0.5rem 1rem;
    }

    .modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }
}

@media (max-width: 480px) {
    .intro-title {
        font-size: 2.5rem;
    }

    .house {
        max-width: 120px;
    }

    .house-body {
        min-height: 100px;
        padding: 0.5rem;
    }

    .house-window {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }

    .house-door {
        width: 26px;
        height: 40px;
    }

    .house-roof {
        height: 30px;
    }

    .chimney {
        width: 14px;
        height: 20px;
    }

    .house-flower-box {
        font-size: 0.8rem;
    }

    .plaque-number {
        width: 18px;
        height: 18px;
        font-size: 0.65rem;
    }

    .plaque-name {
        font-size: 0.55rem;
    }

    .highlight-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .poem-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .quiz-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .street-header {
        padding: 1rem;
    }

    .street-sign {
        padding: 0.4rem 0.8rem;
    }

    .street-sign i {
        font-size: 1rem;
    }

    .street-sign h2 {
        font-size: 1rem;
    }
}

/* Özel Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Selection */
::selection {
    background: rgba(102, 126, 234, 0.5);
    color: white;
}