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

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- NAVIGATION / HEADER --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo i {
    color: #20D5EC;
}

.nav-menu {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-menu a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover, .nav-menu a.active {
    color: #fff;
}

/* Mobil Menü Uyumu */
@media (max-width: 768px) {
    .nav-menu {
        display: none; /* JavaScript ile açılır kapanır hamburger menü yapılabilir */
    }
}

/* --- MAIN CONTENT --- */
main {
    flex: 1;
}

/* Kapak Fotoğrafı Animasyonu */
.cover-photo {
    width: 100%;
    height: 300px;
    background: linear-gradient(-45deg, #0f0c29, #302b63, #24243e, #0a0a0a);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    position: relative;
    overflow: hidden;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.cover-photo::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(32, 213, 236, 0.15) 0%, transparent 60%);
    transform: rotate(-30deg);
}

.cover-photo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, #0a0a0a, transparent);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Profil Bölümü (SEO uyumlu Figcaption dahil) */
.profile-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -100px; 
    position: relative;
    z-index: 10;
    text-align: center;
    margin-bottom: 50px;
}

figure.profile-figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.profile-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 6px solid #0a0a0a;
    background: url('EshanSayhan.jpeg') center/cover;
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

figcaption.avatar-caption {
    margin-top: 10px;
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
}

.profile-name {
    font-size: 2.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 5px;
}

.verified {
    color: #20D5EC;
    font-size: 1.6rem;
}

.profile-title {
    color: #aaa;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 1px;
}

.profile-bio {
    max-width: 750px;
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 30px;
}

.profile-stats {
    display: flex;
    gap: 50px;
    margin-bottom: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- FOOTER & CONTENT GRID --- */
.site-footer {
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 40px;
    margin-top: auto;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Kartları */
.card {
    background: linear-gradient(-45deg, rgba(15,12,41,0.4), rgba(48,43,99,0.4), rgba(36,36,62,0.4), rgba(10,10,10,0.4));
    background-size: 300% 300%;
    animation: gradientBG 12s ease infinite;
    border-radius: 16px;
    padding: 25px 20px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    box-shadow: inset 0 0 20px rgba(255,255,255,0.02);
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(32, 213, 236, 0.1);
    border-color: rgba(32, 213, 236, 0.3);
}

.card-title {
    font-size: 1.15rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #eee;
    font-weight: 600;
}

.card-title i {
    color: #20D5EC; 
}

.card p {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin-bottom: 18px;
    line-height: 1.5;
}

/* İnce ve zarif link butonları */
.link-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.link-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: rgba(255,255,255,0.03);
    color: #ddd;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.link-btn:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-color: rgba(255,255,255,0.1);
}

.link-btn i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.link-btn:hover i {
    transform: scale(1.1);
}

.spotify-btn:hover i { color: #1DB954; }
.youtube-btn:hover i { color: #FF0000; }
.wiki-btn:hover i { color: #fff; }
.insta-btn:hover i { color: #E1306C; }

/* Footer Legal Links & Copyright */
.footer-legal {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.legal-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    list-style: none;
}

.legal-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: #20D5EC;
}

.copyright {
    color: #555;
    font-size: 0.8rem;
}

/* Forms (Contact Page) */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    font-size: 0.9rem;
    color: #ccc;
}

.form-control {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 12px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #20D5EC;
    background: rgba(255,255,255,0.08);
}

.submit-btn {
    background: #20D5EC;
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    background: #1cb5c9;
}

/* Legal Pages Typography */
.legal-content h2, .legal-content h3 {
    margin-top: 25px;
    margin-bottom: 15px;
    color: #eee;
}

.legal-content p, .legal-content ul {
    color: #bbb;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.legal-content ul {
    padding-left: 20px;
}

/* Blog Layout */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.blog-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(32, 213, 236, 0.3);
}

.blog-image {
    width: 100%;
    height: 180px;
    background-color: #222;
    background-size: cover;
    background-position: center;
}

.blog-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-date {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 10px;
    text-decoration: none;
}

.blog-excerpt {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 15px;
    flex: 1;
}

.blog-readmore {
    color: #20D5EC;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Alt Sayfa İçerik Kutusu (About & Music Pages) */
.page-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
    margin-top: 30px;
}

.page-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.page-content p {
    color: #ccc;
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Gallery Grid Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: rgba(32, 213, 236, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item figcaption {
    padding: 15px;
    font-size: 0.9rem;
    color: #ccc;
    text-align: center;
    background: rgba(0,0,0,0.3);
}

/* TikTok Page Styling */
.tiktok-btn {
    background: linear-gradient(45deg, #fe2c55, #25f4ee);
    color: #fff;
    font-weight: bold;
    border: none;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    padding: 15px 30px;
    font-size: 1.1rem;
    display: inline-block;
    border-radius: 8px;
    margin-top: 20px;
}
.tiktok-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, #25f4ee, #fe2c55);
}

/* Instagram Page Styling */
.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    font-weight: bold;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    display: inline-block;
    border-radius: 8px;
    margin-top: 20px;
    transition: transform 0.3s;
}
.instagram-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, #bc1888 0%, #cc2366 25%, #dc2743 50%, #e6683c 75%, #f09433 100%);
}

/* IMDb Page Styling */
.imdb-btn {
    background-color: #f5c518;
    color: #000;
    font-weight: 900;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    display: inline-block;
    border-radius: 8px;
    margin-top: 20px;
    transition: transform 0.3s, background-color 0.3s;
}
.imdb-btn:hover {
    transform: scale(1.05);
    background-color: #e3b616;
}

/* Links Hub Grid */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    margin-top: 30px;
}
.hub-link-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}
.hub-link-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.hub-link-btn i {
    font-size: 1.5rem;
}
.bg-spotify:hover { background: #1DB954; border-color: #1DB954; color: #fff; }
.bg-apple:hover { background: #FA243C; border-color: #FA243C; color: #fff; }
.bg-google:hover { background: #34A853; border-color: #34A853; color: #fff; }
.bg-youtube:hover { background: #FF0000; border-color: #FF0000; color: #fff; }
.bg-github:hover { background: #333; border-color: #333; color: #fff; }
.bg-sketchfab:hover { background: #1CAAD9; border-color: #1CAAD9; color: #fff; }
.bg-steam:hover { background: #171a21; border-color: #171a21; color: #fff; }
.bg-facebook:hover { background: #1877F2; border-color: #1877F2; color: #fff; }
.bg-soundcloud:hover { background: #ff5500; border-color: #ff5500; color: #fff; }
.bg-generic:hover { background: #20D5EC; border-color: #20D5EC; color: #000; }

/* FAQ Accordion Styles */
.faq-section {
    margin: 50px 0;
    padding: 20px;
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}
.faq-section h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #20D5EC;
}
.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
}
.faq-item summary {
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    transition: color 0.3s;
}
.faq-item summary:hover {
    color: #20D5EC;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: #20D5EC;
}
.faq-item[open] summary::after {
    content: '-';
}
.faq-item p {
    margin-top: 15px;
    color: #ccc;
    line-height: 1.6;
    padding-left: 10px;
    border-left: 3px solid #20D5EC;
}

/* Theme Variables & Light Mode */
:root {
    --bg-color: #0a0a0a;
    --text-color: #f0f0f0;
    --card-bg: rgba(255, 255, 255, 0.05);
}

body.light-mode {
    --bg-color: #f4f4f9;
    --text-color: #1a1a1a;
    --card-bg: #ffffff;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: background-color 0.4s ease, color 0.4s ease;
}

.card, .faq-section {
    background: var(--card-bg) !important;
    color: var(--text-color);
    transition: background 0.4s ease, box-shadow 0.4s ease;
}
.card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

body.light-mode .site-header {
    background: rgba(255,255,255,0.9);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
body.light-mode .nav-menu a {
    color: #1a1a1a;
}
body.light-mode .profile-bio, body.light-mode .faq-item p {
    color: #4a4a4a;
}
body.light-mode .faq-item summary {
    color: #1a1a1a;
}
body.light-mode .site-footer {
    border-top: 1px solid rgba(0,0,0,0.1);
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll-to-Top Button */
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #20D5EC;
    color: #000;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(32, 213, 236, 0.4);
}
#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
}
#scrollTopBtn:hover {
    transform: translateY(-5px);
    background: #fff;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 1001;
    transition: transform 0.5s ease;
}
body.light-mode .cookie-banner {
    background: rgba(255, 255, 255, 0.95);
    color: #000;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.cookie-banner.hide {
    transform: translateY(100%);
}
.cookie-banner p {
    margin: 0;
    font-size: 0.95rem;
}
.cookie-banner button {
    background: #20D5EC;
    color: #000;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}
.cookie-banner button:hover {
    background: #fff;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}
.lightbox-modal img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}
.lightbox-modal.active img {
    transform: scale(1);
}
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s;
}
.lightbox-close:hover {
    color: #20D5EC;
}

/* Spotify Iframe */
.spotify-embed {
    width: 100%;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Search Bar */
.search-container {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 5px 15px;
    margin-left: 15px;
}
.search-container input {
    background: transparent;
    border: none;
    color: var(--text-primary);
    outline: none;
    width: 150px;
    font-size: 0.9rem;
}
.search-container input::placeholder {
    color: var(--text-secondary);
}

/* Engagement Bar */
.engagement-bar {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    padding: 15px;
    background: rgba(32, 213, 236, 0.05);
    border: 1px solid rgba(32, 213, 236, 0.2);
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
}
.engagement-bar span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
}
.engagement-bar i {
    color: #20D5EC;
}

/* Tags & Collections */
.tags-collections {
    margin: 25px 0;
}
.tag-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    margin-right: 8px;
    margin-bottom: 8px;
    transition: all 0.3s;
    cursor: pointer;
}
.tag-badge:hover {
    background: #20D5EC;
    color: #000;
}
.collection-badge {
    display: inline-block;
    background: rgba(32, 213, 236, 0.2);
    color: #20D5EC;
    border: 1px solid #20D5EC;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    margin-right: 8px;
    margin-bottom: 8px;
    font-weight: bold;
}

/* Bio Image */
.bio-image-wrapper {
    float: right;
    margin: 0 0 20px 20px;
    width: 250px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 2px solid rgba(32, 213, 236, 0.3);
}
.bio-image-wrapper img {
    width: 100%;
    display: block;
}
@media (max-width: 768px) {
    .bio-image-wrapper {
        float: none;
        margin: 0 auto 20px auto;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: rgba(32, 213, 236, 0.5);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #20D5EC;
}

/* Custom Text Selection */
::selection {
    background: #20D5EC;
    color: #000;
}
::-moz-selection {
    background: #20D5EC;
    color: #000;
}

/* Page Transition Overlay */
.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    z-index: 9999;
    opacity: 1;
    pointer-events: none;
    transition: opacity 0.6s ease-in-out;
}
.page-transition-overlay.loaded {
    opacity: 0;
}
