:root {
    --text-cyan: #22d3ee;
    --card-bg: rgba(15, 23, 42, 0.6);
}

/* Sayfayı Ortala */
.main-viewport {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh; /* Navbar ve footer payı */
    padding: 20px;
}

/* Ana Kart Tasarımı */
.generator-card {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 40px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.text-cyan {
    color: var(--text-cyan);
}

/* Logo ve Başlık */
.logo-box {
    font-size: 2.5rem;
    color: var(--text-cyan);
    filter: drop-shadow(0 0 10px rgba(34, 211, 238, 0.4));
}

/* Şifre Alanı - BEYAZ VE NET */
.display-container {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    padding: 12px 20px;
    align-items: center;
}

    .display-container input {
        background: transparent;
        border: none;
        color: #ffffff; /* Siyah değil, beyaz yaptık */
        font-family: 'JetBrains Mono', monospace;
        font-size: 1.3rem;
        font-weight: 700;
        width: 100%;
        outline: none;
        text-align: center;
    }

.copy-trigger {
    background: none;
    border: none;
    color: var(--text-cyan);
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.2s;
}

/* Ayarlar Okunurluğu */
.label-text {
    color: #94a3b8;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.value-text {
    color: var(--text-cyan);
    font-weight: 800;
    font-size: 1.2rem;
}

/* Modern Checkbox (Chip) */
.options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.check-box input {
    display: none;
}

.check-ui {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 5px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    color: #94a3b8;
}

.check-box input:checked + .check-ui {
    background: rgba(34, 211, 238, 0.1);
    border-color: var(--text-cyan);
    color: var(--text-cyan);
}

/* Ana Buton */
.btn-primary-action {
    width: 100%;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 16px;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

    .btn-primary-action:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(6, 182, 212, 0.3);
    }


/* Temel Renkler ve Font */
:root {
    --bg-dark: #0f172a;
    --text-cyan: #22d3ee;
    --glass-bg: rgba(255, 255, 255, 0.05);
}

body {
    background: radial-gradient(circle at top right, #1e293b, var(--bg-dark));
    color: #f8fafc;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Ana Kart */
.generator-card {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 35px;
    width: 100%;
    max-width: 420px;
    z-index: 5;
}

.text-cyan {
    color: var(--text-cyan);
}

.logo-box {
    font-size: 2.5rem;
    color: var(--text-cyan);
}

/* Şifre Alanı */
.display-container {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 12px 18px;
    display: flex;
}

    .display-container input {
        background: transparent;
        border: none;
        color: #ffffff;
        font-family: 'JetBrains Mono', monospace;
        font-size: 1.3rem;
        font-weight: 700;
        width: 100%;
        outline: none;
        text-align: center;
    }

.copy-trigger {
    background: none;
    border: none;
    color: var(--text-cyan);
    font-size: 1.3rem;
    cursor: pointer;
}

/* Reklam Alanları */
.ad-leaderboard {
    width: 100%;
    max-width: 728px;
    height: 90px;
}

.ad-horizontal-box, .ad-vertical-box {
    background: var(--glass-bg);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #64748b;
    height: 100%;
}

.ad-tag {
    font-size: 0.6rem;
    letter-spacing: 1px;
    opacity: 0.5;
    margin-bottom: 5px;
}

.ad-sticky {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 160px;
    height: 600px;
}

.ad-left {
    left: 30px;
}

.ad-right {
    right: 30px;
}

/* Chip Tasarım */
.options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.check-box input {
    display: none;
}

.check-ui {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 5px;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    color: #94a3b8;
}

.check-box input:checked + .check-ui {
    background: rgba(34, 211, 238, 0.1);
    border-color: var(--text-cyan);
    color: var(--text-cyan);
}

/* Ana Buton */
.btn-primary-action {
    width: 100%;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 16px;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.info-card-modern {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    color: #f8fafc;
}

.feature-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 16px;
    height: 100%;
    border-left: 4px solid var(--text-cyan);
}