/* Reset + temel ayarlar */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #0e0e10;
    --panel: #131317;
    --muted: #a0a0ab;
    --accent: #ffd84d;
    --danger: #ff5757;
    --success: #2ecc71;
    --radius-card: 20px;
    --radius-btn: 10px;
}

html, body {
    min-height: 100%;
}

body {
    font-family: "Poppins", sans-serif;
    background-image: url("../İmages/BG.png");
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    background-color: #0e0e10;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==================== UNIFIED HEADER & NAVBAR ==================== */
.navbar {
    width: 100%;
    padding: 40px 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    background: transparent !important;
    border-bottom: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

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

.logo img {
    width: 64px;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    margin-left: 55px;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
}

.nav-links a.active {
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.24), 0 0 14px rgba(255, 255, 255, 0.233);
    color: #ffffff;
}

.nav-links a:hover {
    color: #ffea62;
}

/* BUTTONS */
.nav-buttons {
    display: flex;
    align-items: center;
}

.nav-buttons a {
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    text-decoration: none;
    margin-left: 10px;
    transition: all 0.25s ease;
}

.login-btn {
    border: 2px solid #ffd84d;
    color: #ffd84d;
    background: transparent;
}

.login-btn:hover {
    color: black;
    background-color: #ffea62;
}

.register-btn {
    border: 2px solid #ffd84d;
    background-color: #ffd84d;
    color: black;
}

.register-btn:hover {
    border: 2px solid #ffd84d;
    color: #ffd84d;
    background: transparent;
}

.menu-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: white;
}

/* ==================== GUIDE MAIN WRAPPER ==================== */
.page-wrap {
    flex: 1;
    width: 100%;
    max-width: 1200px;
    margin: 150px auto 60px;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.guide-container {
    width: 100%;
    background: rgba(18, 18, 22, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 42px 45px 40px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), 0 0 40px rgba(255, 216, 77, 0.06);
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.4s ease-out;
}

.guide-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffd84d, transparent);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Header */
.guide-header {
    text-align: center;
    margin-bottom: 35px;
}

.guide-title {
    font-size: 30px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
}

.guide-notice-box {
    background: rgba(255, 87, 87, 0.07);
    border: 1px solid rgba(255, 87, 87, 0.25);
    border-radius: 18px;
    padding: 22px 30px;
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.notice-badge {
    display: inline-block;
    color: #ff6b6b;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.notice-heading {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin: 2px 0 6px 0;
}

.notice-desc {
    color: #d1d1d6;
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
    max-width: 720px;
}

.notice-desc strong {
    color: #ffd84d;
    font-weight: 700;
}

/* ==================== STEPS GRID ==================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 45px;
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 216, 77, 0.3);
}

.step-card.highlight {
    background: rgba(255, 216, 77, 0.04);
    border-color: rgba(255, 216, 77, 0.35);
    box-shadow: 0 10px 30px rgba(255, 216, 77, 0.05);
}

.step-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(255, 255, 255, 0.08);
    color: #aaa;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
}

.step-card.highlight .step-badge {
    background: #ffd84d;
    color: #000;
}

.step-icon {
    font-size: 38px;
    margin-bottom: 16px;
}

.step-title {
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.step-desc {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

/* Command box */
.command-box {
    margin-top: 14px;
    background: #000000;
    border: 1px solid rgba(255, 216, 77, 0.4);
    border-radius: 10px;
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.command-box code {
    color: #ffd84d;
    font-family: 'Consolas', monospace;
    font-weight: 700;
    font-size: 15px;
}

.cmd-example {
    font-size: 12px;
    color: #888;
}

.cmd-example code {
    font-size: 12px;
    color: #bbb;
}

/* ==================== ACTIONS ==================== */
.guide-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 10px;
}

.btn-rooms-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffd84d;
    color: #000000;
    font-weight: 700;
    font-size: 16px;
    padding: 15px 36px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(255, 216, 77, 0.35);
    transition: all 0.25s ease;
}

.btn-rooms-action:hover {
    background: #ffe375;
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(255, 216, 77, 0.5);
    color: #000000;
}

.btn-login-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 30px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-login-action:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ffffff;
    color: #ffffff;
}

/* ==================== SITE FOOTER ==================== */
.site-footer {
    background-color: #000000;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 14px;
}

.footer-logo {
    width: 80px;
    opacity: 0.9;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.social-links a {
    color: var(--muted);
    margin-left: 15px;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.social-links a:hover {
    color: #ffd84d;
}

.copyright {
    color: #666;
    font-size: 13px;
}

@media (max-width: 900px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .guide-container {
        padding: 35px 20px;
    }

    .guide-title {
        font-size: 24px;
    }

    .btn-rooms-action, .btn-login-action {
        width: 100%;
    }

    .site-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}