/* Genel Stil */
:root {
    --yellow-primary: #facc15; /* Tailwind yellow-400 */
    --yellow-dark: #eab308;   /* Tailwind yellow-600 */
    --black-primary: #1a1a1a;
    --black-light: #2c2c2c;
    --redacted-bg: #facc15;
    --redacted-text: #0a0a0a;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Press Start 2P', cursive;
    background-color: var(--black-primary);
    color: var(--yellow-primary);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    text-shadow: 0 0 5px rgba(250, 204, 21, 0.2);
}

/* Scrollbar Style */
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    background: var(--black-light);
}
::-webkit-scrollbar-thumb {
    background-color: var(--yellow-dark);
    border-radius: 20px;
    border: 3px solid var(--black-light);
}

/* Başlıklar */
h1, h2, h3 {
    font-family: 'Permanent Marker', cursive;
    color: var(--yellow-primary);
    text-transform: uppercase;
    margin-bottom: 20px;
}

h1 { font-size: clamp(3rem, 10vw, 7rem); }
h2 { font-size: clamp(2rem, 6vw, 4rem); }
h3 { font-size: clamp(1.5rem, 4vw, 2.5rem); }

p {
    margin-bottom: 15px;
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
}

a {
    color: var(--yellow-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: var(--yellow-dark);
    text-decoration: underline;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid var(--yellow-dark);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--yellow-primary);
}

.nav-title {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.5rem;
    color: var(--yellow-primary);
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-item {
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.nav-item:hover {
    background-color: var(--yellow-primary);
    color: var(--black-primary);
}

.nav-item.social-x, .nav-item.social-telegram {
    background-color: var(--yellow-dark);
    color: var(--black-primary);
    font-family: 'Permanent Marker', cursive;
}
.nav-item.social-x:hover, .nav-item.social-telegram:hover {
    background-color: var(--black-primary);
    color: var(--yellow-dark);
    border: 1px solid var(--yellow-dark);
}


/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 80px; /* Navbar'ı telafi eder */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    filter: blur(3px) grayscale(50%);
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.9));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 5%;
}

.hero-title {
    margin-bottom: 20px;
    color: var(--yellow-primary);
    text-shadow: 4px 4px 0 var(--black-primary), 6px 6px 0 var(--yellow-dark);
}

.hero-subtitle {
    font-family: 'Press Start 2P', cursive;
    font-size: clamp(0.8rem, 2.5vw, 1.5rem);
    color: #fff;
    margin-bottom: 40px;
    background-color: rgba(0,0,0,0.6);
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px dashed var(--yellow-primary);
}

/* CA Box */
.ca-box {
    background-color: var(--black-light);
    border: 2px solid var(--yellow-primary);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(250, 204, 21, 0.5);
    display: inline-block; /* İçeriğe göre genişlesin */
}

.ca-box p {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.8rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.ca-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap; /* Küçük ekranlarda alt alta geçsin */
}

#ca-address {
    font-family: monospace;
    font-size: clamp(0.7rem, 2vw, 1rem);
    background-color: var(--black-primary);
    color: var(--yellow-primary);
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid var(--yellow-dark);
    word-break: break-all; /* Uzun adresleri kırması için */
}

.copy-btn {
    background-color: var(--yellow-primary);
    color: var(--black-primary);
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.7rem;
    transition: background-color 0.3s, transform 0.2s;
}

.copy-btn:hover {
    background-color: var(--yellow-dark);
    transform: scale(1.05);
}

.ca-note {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.7rem;
    color: #ccc;
    margin-top: -10px;
    opacity: 0.8;
}

/* Genel Butonlar */
.hero-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    font-family: 'Press Start 2P', cursive;
    padding: 15px 30px;
    border-radius: 8px;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.btn-x {
    background-color: #000; /* X'in siyah logosuna yakın */
    color: #fff;
    border-color: #fff;
}
.btn-x:hover {
    background-color: #fff;
    color: #000;
    border-color: #000;
    transform: translateY(-5px) scale(1.02);
}

.btn-telegram {
    background-color: #0088CC; /* Telegram'ın mavisi */
    color: #fff;
    border-color: #0088CC;
}
.btn-telegram:hover {
    background-color: #006699;
    transform: translateY(-5px) scale(1.02);
}


/* Ana Bölümler */
.main-sections {
    padding: 50px 0;
}

.section {
    padding: 80px 5%;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    border-bottom: 1px dashed var(--yellow-dark);
}

.section:last-of-type {
    border-bottom: none;
}

.dark-bg {
    background-color: var(--black-light);
    color: #fff;
    text-shadow: none;
}
.dark-bg .section-title {
    color: var(--yellow-primary);
}


.section-content {
    max-width: 900px;
    margin: 0 auto;
}

.section-mascot {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid var(--yellow-primary);
    box-shadow: 0 0 20px rgba(250, 204, 21, 0.7);
    margin: 40px auto;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.section-mascot:hover {
    transform: scale(1.05) rotate(5deg);
}

.section-text {
    margin-bottom: 25px;
    line-height: 1.8;
    color: #eee;
}

.redacted {
    background-color: var(--redacted-bg);
    color: var(--redacted-text);
    padding: 2px 8px;
    border-radius: 3px;
    cursor: help;
    font-weight: bold;
    text-shadow: none;
}

.no-promises {
    list-style: none;
    padding: 20px 0;
    margin: 30px auto;
    max-width: 400px;
    background-color: var(--black-light);
    border: 2px dashed var(--yellow-dark);
    border-radius: 10px;
    box-shadow: inset 0 0 10px rgba(250, 204, 21, 0.3);
}

.no-promises li {
    font-family: 'Press Start 2P', cursive;
    margin: 10px 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.warning-icon {
    color: #ff0000; /* Kırmızı uyarı */
    font-size: 1.2rem;
}

.fun-fact {
    background-color: rgba(250, 204, 21, 0.1);
    border-left: 5px solid var(--yellow-primary);
    padding: 15px 20px;
    margin-top: 40px;
    font-style: italic;
    color: #fdd835;
    font-size: clamp(0.8rem, 2vw, 1.1rem);
}

/* Felsefe Grid */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.philosophy-item {
    background-color: var(--black-primary);
    border: 2px solid var(--yellow-primary);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 10px rgba(250, 204, 21, 0.3);
}

.philosophy-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 25px rgba(250, 204, 21, 0.5);
}

.philosophy-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 2px 2px 0 var(--black-primary);
}

.philosophy-item p {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.8rem;
    color: #ccc;
}

.bottom-note {
    margin-top: 50px;
    font-style: italic;
    color: var(--yellow-primary);
    opacity: 0.9;
}

/* Sosyal Medya Butonları */
.social-links {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    border: 2px solid transparent;
}

.social-btn img {
    width: 24px;
    height: 24px;
}

.social-btn-x {
    background-color: #000;
    color: #fff;
    border-color: #fff;
}
.social-btn-x:hover {
    background-color: #fff;
    color: #000;
    border-color: #000;
    transform: translateY(-7px) scale(1.05);
}

.social-btn-telegram {
    background-color: #0088CC;
    color: #fff;
    border-color: #0088CC;
}
.social-btn-telegram:hover {
    background-color: #006699;
    transform: translateY(-7px) scale(1.05);
}

.disclaimer {
    margin-top: 60px;
    font-size: 0.75rem;
    color: #aaa;
    border: 1px dashed rgba(255,0,0,0.5);
    padding: 15px;
    background-color: rgba(255,0,0,0.05);
}
.disclaimer .warning-icon {
    color: #ff0000;
}


/* Footer */
.footer {
    background-color: var(--black-primary);
    padding: 100px 5% 50px;
    text-align: center;
    border-top: 2px solid var(--yellow-dark);
    box-shadow: 0 -5px 15px rgba(0,0,0,0.5);
}

.footer-title {
    font-family: 'Permanent Marker', cursive;
    font-size: clamp(2rem, 8vw, 5rem);
    color: var(--yellow-primary);
    margin-bottom: 30px;
}

.footer-copy {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.7rem;
    color: #aaa;
    opacity: 0.7;
}

/* Animasyonlar */
@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}
.floating {
    animation: floating 4s ease-in-out infinite;
}

@keyframes glitch {
    0% {
        text-shadow: 4px 4px 0 var(--black-primary), 6px 6px 0 var(--yellow-dark);
        transform: translate(0, 0);
    }
    25% {
        text-shadow: -4px -4px 0 var(--yellow-dark), -6px -6px 0 var(--black-primary);
        transform: translate(2px, -2px);
    }
    50% {
        text-shadow: 4px 4px 0 var(--black-primary), 6px 6px 0 var(--yellow-dark);
        transform: translate(-2px, 2px);
    }
    75% {
        text-shadow: -4px -4px 0 var(--yellow-dark), -6px -6px 0 var(--black-primary);
        transform: translate(2px, -2px);
    }
    100% {
        text-shadow: 4px 4px 0 var(--black-primary), 6px 6px 0 var(--yellow-dark);
        transform: translate(0, 0);
    }
}

.glitch {
    animation: glitch 2s infinite alternate;
}

/* Duyarlı Tasarım */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 15px 2%;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .hero-title {
        font-size: clamp(2rem, 12vw, 5rem);
    }
    .hero-subtitle {
        font-size: clamp(0.7rem, 3vw, 1.2rem);
    }
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .btn {
        width: 80%;
        max-width: 300px;
    }
    .section-title {
        font-size: clamp(1.8rem, 7vw, 3rem);
    }
    .philosophy-item {
        padding: 20px;
    }
    .social-btn {
        width: 80%;
        max-width: 300px;
    }
    .ca-display {
        flex-direction: column;
    }
}