:root {
    --primary-color: #e50914;
    --dark-bg: #0b0b0b;
    --light-text: #f5f5f5;
    --gray-text: #a1a1a1;
    --font-main: 'Montserrat', sans-serif;
    --font-mono: 'Roboto Mono', monospace;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body {
    background-color: var(--dark-bg);
    color: var(--light-text);
    font-family: var(--font-main);
    overflow-x: hidden;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #333;
}
.logo {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--primary-color);
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}
.nav-links a {
    text-decoration: none;
    color: var(--light-text);
    font-weight: 500;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
}
.nav-links a:hover {
    color: var(--primary-color);
}
.hero {
    height: 100vh;
    background: url('https://placehold.co/1920x1080/000/333?text=Eminem+Stage+Background') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), #0b0b0b);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.hero h1 {
    font-size: 6rem;
    font-weight: 900;
    letter-spacing: 5px;
    margin-bottom: 10px;
    position: relative;
}
.glitch {
    position: relative;
}
.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.glitch::before {
    left: 2px;
    text-shadow: -1px 0 red;
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}
.glitch::after {
    left: -2px;
    text-shadow: -1px 0 blue;
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2.5s infinite linear alternate-reverse;
}
@keyframes glitch-anim {
    0% { clip: rect(10px, 9999px, 30px, 0); }
    20% { clip: rect(80px, 9999px, 100px, 0); }
    100% { clip: rect(120px, 9999px, 140px, 0); }
}
.hero h2 {
    font-family: var(--font-mono);
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-style: italic;
    color: #ccc;
}
.btn-main {
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--light-text);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
}
.btn-main:hover {
    background: var(--primary-color);
    box-shadow: 0 0 20px var(--primary-color);
}
.section {
    padding: 100px 20px;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
}
.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    text-transform: uppercase;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 10px;
}
.bio-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}
.bio-text {
    flex: 1;
    line-height: 1.8;
    color: var(--gray-text);
    font-size: 1.1rem;
}
.bio-text strong {
    color: var(--light-text);
}
.bio-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: -10px 10px 0 var(--primary-color);
    transition: transform 0.3s;
}
.bio-image img:hover {
    transform: scale(1.02);
}
.stats-bar {
    background: #111;
    display: flex;
    justify-content: space-around;
    padding: 50px 0;
    margin: 50px 0;
    flex-wrap: wrap;
}
.stat-item {
    text-align: center;
}
.stat-item h3 {
    font-size: 3rem;
    color: var(--primary-color);
    font-family: var(--font-mono);
}
.stat-item p {
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}
.album-card {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
}
.album-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.2);
}
.card-inner img {
    width: 100%;
    display: block;
}
.card-info {
    padding: 20px;
    text-align: center;
}
.card-info h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}
.card-info span {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-family: var(--font-mono);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}
.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    filter: grayscale(100%);
    transition: 0.4s;
}
.gallery-img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
    z-index: 10;
}
footer {
    background: #050505;
    padding: 50px 20px;
    text-align: center;
    border-top: 1px solid #222;
}
.socials {
    margin: 20px 0;
}
.socials a {
    color: var(--light-text);
    font-size: 1.5rem;
    margin: 0 15px;
    transition: 0.3s;
}
.socials a:hover {
    color: var(--primary-color);
}
.copyright {
    color: #444;
    font-size: 0.8rem;
}
@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .bio-content { flex-direction: column; }
    .stats-bar { flex-direction: column; gap: 30px; }
    .nav-links { display: none; }
}
.album-card {
    background: #1a1a1a;
    padding: 0;
    border-radius: 12px;
    transition: transform 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.album-card img {
    width: 100%;
    height: auto;
    display: block;
}
.card-info {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.spotify-embed {
    width: 100%;
    height: 80px;
    margin-top: 5px;
    border-radius: 8px;
    overflow: hidden;
    background: transparent;
}
.spotify-embed iframe {
    display: block;
}
.quote-section {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('image/eminem-bg.jpg') center/cover fixed;
    padding: 100px 20px;
    text-align: center;
}
.quote-box {
    max-width: 800px;
    margin: 0 auto;
}
.quote-box p {
    font-size: 2rem;
    font-weight: 700;
    font-style: italic;
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.4;
}
.quote-author {
    color: var(--primary-color);
    font-family: var(--font-mono);
    font-size: 1.2rem;
    letter-spacing: 2px;
}
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}
.about-card-extra {
    background: linear-gradient(145deg, #151515, #0a0a0a);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #222;
    transition: 0.4s;
}
.about-card-extra:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}
.about-card-extra i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.about-card-extra h3 {
    margin-bottom: 15px;
    font-family: var(--font-mono);
}
.newsletter-section {
    background: var(--primary-color);
    padding: 60px 20px;
    text-align: center;
    color: white;
}
.newsletter-section h2 {
    margin-bottom: 20px;
}
.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}
.newsletter-form input {
    padding: 15px;
    border: none;
    border-radius: 5px;
    width: 300px;
}
.newsletter-form button {
    padding: 15px 30px;
    background: #000;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
}






.typing-effect {
    font-family: 'Roboto Mono', monospace;
    font-size: 1.2rem;
    color: #ccc;
    min-height: 1.5em; /* Zıplamayı önler */
}

#dynamic-text {
    color: var(--primary-color);
    border-right: 2px solid var(--primary-color);
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { border-color: transparent; }
    50% { border-color: var(--primary-color); }
}









.album-card {
    /* Mevcut kodlarını koru */
    perspective: 1000px; /* 3D derinlik için şart */
    transform-style: preserve-3d;
}

.card-inner {
    transition: transform 0.1s ease; /* Çok hızlı tepki versin */
    transform-style: preserve-3d;
}










.reveal {
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: all 1s ease;
}

/* Görünür durum (JS ile eklenecek) */
.reveal.active {
    transform: translateY(0);
    opacity: 1;
}









.music-bars {
    display: flex;
    align-items: flex-end;
    height: 30px;
    gap: 3px;
    margin-left: 10px;
}

.bar {
    width: 6px;
    background: var(--primary-color);
    animation: bounce 1s infinite ease-in-out;
}

.bar:nth-child(1) { animation-duration: 0.8s; height: 10px; }
.bar:nth-child(2) { animation-duration: 1.1s; height: 20px; }
.bar:nth-child(3) { animation-duration: 0.9s; height: 15px; }
.bar:nth-child(4) { animation-duration: 1.2s; height: 25px; }

@keyframes bounce {
    0%, 100% { height: 5px; }
    50% { height: 100%; }
}