/* ══════════════════════════════════════════════
   ARA�?TIRMA 101 — PDF-to-Web Stylesheet
   ══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700;800;900&family=Creepster&family=Special+Elite&display=swap');

/* ── Variables ── */
:root {
    --ar-red: #8B1A1A;
    --ar-red-deep: #6b1010;
    --ar-red-bright: #e63950;
    --ar-cream: #f5f0e8;
    --ar-white: #ffffff;
    --ar-black: #1a1a1a;
    --ar-text: #2d2d2d;
    --ar-text-light: #555;
    --ar-border: #e0d8cc;
    --ar-card-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

/* ── Main Container ── */
.ar-main {
    padding-top: 100px;
    padding-bottom: 80px;
    min-height: 100vh;
}

.ar-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* ── Cover Page ── */
.ar-cover {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    max-height: 85vh;
    border-radius: 20px;
    overflow: hidden;
    background: #0a0a0a;
    border: 4px solid var(--ar-red);
    box-shadow: 0 0 60px rgba(139, 26, 26, 0.3), var(--ar-card-shadow);
}

.ar-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ar-cover-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #1a0a0a 0%, #0a0a0a 40%, #0a0a0a 70%, var(--ar-red-deep) 100%);
    color: var(--ar-cream);
    text-align: center;
    padding: 40px;
}

.ar-cover-placeholder .cover-subtitle {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 8px;
    opacity: 0.7;
}

.ar-cover-placeholder .cover-credits {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 60px;
    line-height: 2;
}

.ar-cover-placeholder .cover-title {
    font-family: 'Creepster', cursive;
    font-size: clamp(48px, 10vw, 100px);
    line-height: 0.9;
    text-shadow: 0 0 40px rgba(230, 57, 80, 0.5);
    margin-bottom: 10px;
}

.ar-cover-placeholder .cover-title .title-z {
    color: var(--ar-red-bright);
    font-size: 1.3em;
    position: relative;
    top: -5px;
}

.ar-cover-placeholder .cover-title-sub {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 8vw, 80px);
    color: var(--ar-red-bright);
    letter-spacing: 6px;
    text-shadow: 0 0 30px rgba(230, 57, 80, 0.4);
}

.ar-cover-placeholder .cover-101 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(60px, 14vw, 140px);
    color: var(--ar-white);
    text-shadow: 0 0 60px rgba(255,255,255,0.3);
    line-height: 1;
}

/* ── Page Card (shared across all pages) ── */
.ar-page {
    position: relative;
    background: var(--ar-cream);
    border-radius: 16px;
    border: 4px solid var(--ar-red);
    box-shadow: var(--ar-card-shadow);
    overflow: hidden;
}

.ar-page-inner {
    padding: 40px 48px 48px;
}

/* ── Page Header Bar ── */
.ar-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--ar-cream);
    padding: 12px 20px;
    border-radius: 40px;
    border: 2px solid #ddd;
    margin-bottom: 32px;
    position: relative;
}

.ar-page-header .header-star {
    color: var(--ar-red-bright);
    font-size: 22px;
    line-height: 1;
}

.ar-page-header .header-title {
    background: var(--ar-black);
    color: var(--ar-white);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 8px 32px;
    border-radius: 30px;
}

/* ── Section Number + Title ── */
.ar-section-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.ar-section-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--ar-red-bright);
    color: var(--ar-white);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 12px rgba(230, 57, 80, 0.35);
}

.ar-section-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: var(--ar-black);
    text-transform: uppercase;
    border-bottom: 2px solid var(--ar-black);
    padding-bottom: 6px;
    flex: 1;
}

/* ── İçindekiler (TOC) ── */
.ar-toc-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 8vw, 72px);
    color: var(--ar-black);
    text-align: center;
    margin-bottom: 36px;
    letter-spacing: 3px;
    text-shadow: 3px 3px 0 rgba(0,0,0,0.1);
}

.ar-toc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ar-toc-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 4px 0;
}

.ar-toc-item .toc-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--ar-red-bright);
    color: var(--ar-white);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ar-toc-item .toc-label {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--ar-black);
    text-transform: uppercase;
    border-bottom: 1px solid #ccc;
    padding-bottom: 6px;
    flex: 1;
}

/* ── Body Text ── */
.ar-text {
    font-family: 'Outfit', sans-serif;
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--ar-text);
    text-align: justify;
    margin-bottom: 20px;
}

.ar-text strong {
    font-weight: 700;
    color: var(--ar-black);
}

.ar-text em {
    font-style: italic;
}

.ar-text u {
    text-decoration: underline;
    text-decoration-color: var(--ar-red-bright);
    text-underline-offset: 3px;
}

/* ── Two Column Layout ── */
.ar-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 20px;
    align-items: start;
}

.ar-two-col--img-left {
    grid-template-columns: 0.9fr 1.1fr;
}

.ar-two-col--img-right {
    grid-template-columns: 1.1fr 0.9fr;
}

/* ── Image Placeholder ── */
.ar-img-placeholder {
    width: 100%;
    min-height: 220px;
    background: #e8e0d4;
    border: 2px dashed #bbb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    color: #999;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
}

.ar-img-placeholder i {
    font-size: 32px;
    opacity: 0.5;
}

.ar-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* ── Screenshot Grid ── */
.ar-screenshot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.ar-screenshot-grid .ar-img-placeholder {
    min-height: 200px;
}

/* ── Quote / Blockquote ── */
.ar-quote {
    position: relative;
    background: var(--ar-red-bright);
    color: var(--ar-white);
    border-radius: 14px;
    padding: 32px 40px;
    margin: 28px 0;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.7;
}

.ar-quote::before {
    content: '\201C';
    position: absolute;
    top: 8px;
    left: 16px;
    font-size: 64px;
    color: rgba(255,255,255,0.25);
    font-family: Georgia, serif;
    line-height: 1;
}

.ar-quote::after {
    content: '\201D';
    position: absolute;
    bottom: -10px;
    right: 20px;
    font-size: 64px;
    color: rgba(255,255,255,0.25);
    font-family: Georgia, serif;
    line-height: 1;
}

/* ── Note / Sticky ── */
.ar-note {
    position: relative;
    background: #3a2a1a;
    color: var(--ar-cream);
    padding: 24px 28px;
    border-radius: 8px;
    font-family: 'Special Elite', cursive;
    font-size: 15px;
    line-height: 1.7;
    transform: rotate(-1.5deg);
    box-shadow: 4px 4px 16px rgba(0,0,0,0.3);
    margin: 20px 0;
    max-width: 320px;
}

.ar-note::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 30%;
    width: 60px;
    height: 12px;
    background: rgba(200,180,140,0.5);
    border-radius: 2px;
}

/* ── Bullet List ── */
.ar-list {
    list-style: none;
    margin: 12px 0 20px 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: var(--ar-text);
}

.ar-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
}

.ar-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--ar-red-bright);
    font-weight: 700;
}

.ar-list .ar-example {
    font-style: italic;
    color: var(--ar-text-light);
    margin-top: 2px;
}

/* ── �?ablon Section Labels ── */
.ar-template-label {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--ar-black);
    margin: 20px 0 8px;
}

.ar-template-label:first-of-type {
    margin-top: 0;
}

/* ── Separator / Divider ── */
.ar-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--ar-border), transparent);
    margin: 24px 0;
    border: none;
}

/* ── Warning Box ── */
.ar-warning {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(230, 57, 80, 0.08);
    border-left: 4px solid var(--ar-red-bright);
    padding: 16px 20px;
    border-radius: 0 10px 10px 0;
    margin: 20px 0;
}

.ar-warning i {
    color: var(--ar-red-bright);
    font-size: 20px;
    margin-top: 2px;
}

.ar-warning .ar-text {
    margin-bottom: 0;
}

/* ── Discord Ticket Screenshot ── */
.ar-discord-img {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #ddd;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.ar-discord-img img {
    width: 100%;
    display: block;
}

/* ── Decorative Elements ── */
.ar-page-deco-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.15;
}

.ar-page-deco-bottom.zombie-silhouettes {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 120"><text x="50" y="100" font-size="80" fill="%23333" font-family="serif">g���g���‍♂️g���‍♀️g���g���‍♂️</text></svg>') repeat-x bottom;
    background-size: 400px;
}

/* Spider web corner */
.ar-deco-spider {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    opacity: 0.12;
    pointer-events: none;
}

.ar-deco-spider::before {
    content: 'g���️';
    font-size: 60px;
    position: absolute;
    top: -10px;
    left: -10px;
}

.ar-deco-spider-right {
    left: auto;
    right: 0;
}

.ar-deco-spider-right::before {
    left: auto;
    right: -10px;
    transform: scaleX(-1);
}

/* ── Do / Don't ── */
.ar-do-dont {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 20px 0;
}

.ar-do, .ar-dont {
    padding: 24px;
    border-radius: 14px;
}

.ar-do {
    background: rgba(0, 180, 80, 0.06);
    border: 2px solid rgba(0, 180, 80, 0.25);
}

.ar-dont {
    background: rgba(230, 57, 80, 0.06);
    border: 2px solid rgba(230, 57, 80, 0.25);
}

.ar-do-title, .ar-dont-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ar-do-title {
    color: #00a84f;
}

.ar-dont-title {
    color: var(--ar-red-bright);
}

.ar-do-title i {
    font-size: 20px;
}

.ar-dont-title i {
    font-size: 22px;
}

.ar-do .ar-list li::before {
    content: '✓';
    color: #00a84f;
}

.ar-dont .ar-list li::before {
    content: '✗';
    color: var(--ar-red-bright);
}

/* ── Checklist ── */
.ar-checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}

.ar-check-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--ar-white);
    border: 2px solid var(--ar-border);
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: var(--ar-text);
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.ar-check-item:hover {
    border-color: var(--ar-red-bright);
    background: rgba(230, 57, 80, 0.03);
}

.ar-check-item input[type="checkbox"] {
    display: none;
}

.ar-check-box {
    width: 24px;
    height: 24px;
    border: 2px solid #ccc;
    border-radius: 6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    position: relative;
}

.ar-check-item input[type="checkbox"]:checked ~ .ar-check-box {
    background: var(--ar-red-bright);
    border-color: var(--ar-red-bright);
}

.ar-check-item input[type="checkbox"]:checked ~ .ar-check-box::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: 700;
}

.ar-check-item input[type="checkbox"]:checked ~ span:last-child {
    text-decoration: line-through;
    opacity: 0.5;
}

/* ── FAQ ── */
.ar-faq {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 12px 0;
}

.ar-faq-item {
    background: var(--ar-white);
    border: 2px solid var(--ar-border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.ar-faq-item[open] {
    border-color: var(--ar-red-bright);
}

.ar-faq-q {
    padding: 16px 20px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--ar-black);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    user-select: none;
    transition: background 0.2s ease;
}

.ar-faq-q::-webkit-details-marker {
    display: none;
}

.ar-faq-q::after {
    content: '+';
    margin-left: auto;
    font-size: 22px;
    font-weight: 300;
    color: var(--ar-text-light);
    transition: transform 0.2s ease;
}

.ar-faq-item[open] .ar-faq-q::after {
    content: '−';
    color: var(--ar-red-bright);
}

.ar-faq-q:hover {
    background: rgba(230, 57, 80, 0.03);
}

.ar-faq-q i {
    color: var(--ar-red-bright);
    font-size: 18px;
    flex-shrink: 0;
}

.ar-faq-a {
    padding: 0 20px 18px 48px;
    font-family: 'Outfit', sans-serif;
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--ar-text);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .ar-page-inner {
        padding: 28px 24px 32px;
    }

    .ar-two-col,
    .ar-two-col--img-left,
    .ar-two-col--img-right {
        grid-template-columns: 1fr;
    }

    .ar-do-dont {
        grid-template-columns: 1fr;
    }

    .ar-screenshot-grid {
        grid-template-columns: 1fr;
    }

    .ar-section-title {
        font-size: 20px;
    }

    .ar-section-num {
        width: 46px;
        height: 46px;
        font-size: 22px;
    }

    .ar-note {
        max-width: 100%;
        transform: rotate(0);
    }

    .ar-quote {
        padding: 24px 28px;
    }

    .ar-container {
        gap: 40px;
    }

    .ar-cover {
        aspect-ratio: auto;
        min-height: 500px;
    }
}

@media (max-width: 480px) {
    .ar-page-inner {
        padding: 20px 16px 24px;
    }

    .ar-text {
        font-size: 14px;
        text-align: left;
    }

    .ar-toc-title {
        font-size: 36px;
    }

    .ar-page-header .header-title {
        font-size: 11px;
        letter-spacing: 2px;
        padding: 6px 20px;
    }
}
