.auth-body {
    min-height: 100vh;
    margin: 0;
    background: #050505;
}

.auth-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 40px 20px;
    background:
        radial-gradient(
            circle at top,
            rgba(229, 9, 20, 0.18),
            transparent 40%
        ),
        #050505;
}

.auth-card {
    width: min(560px, 100%);
    padding: 38px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: rgba(15, 15, 15, 0.98);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6);
}

.auth-logo-link {
    display: block;
    margin-bottom: 22px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
}

.auth-card .section-label {
    display: block;
    text-align: center;
}

.auth-card h1 {
    margin: 10px 0;
    color: #ffffff;
    font-size: 42px;
    text-align: center;
}

.auth-description {
    margin: 0 0 28px;
    color: #aaaaaa;
    line-height: 1.7;
    text-align: center;
}

.auth-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 17px;
}

.auth-form-group label {
    color: #dddddd;
    font-size: 13px;
    font-weight: 800;
}

.auth-form-group input {
    width: 100%;
    min-height: 52px;
    box-sizing: border-box;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 9px;
    outline: none;
    background: #080808;
    color: #ffffff;
    font-size: 14px;
}

.auth-form-group input:focus {
    border-color: #e50914;
    box-shadow:
        0 0 0 4px rgba(229, 9, 20, 0.1);
}

.auth-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 5px 0 20px;
    color: #bbbbbb;
    font-size: 12px;
    line-height: 1.6;
}

.auth-checkbox input {
    margin-top: 3px;
    accent-color: #e50914;
}

.auth-submit-button {
    width: 100%;
    border: none;
    cursor: pointer;
}

.auth-submit-button:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.auth-message {
    min-height: 24px;
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.6;
    text-align: center;
}

.auth-message.success {
    color: #77e38b;
}

.auth-message.error {
    color: #ff7474;
}

.auth-footer {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.auth-footer p {
    margin: 0 0 5px;
    color: #ffffff;
    font-weight: 800;
}

.auth-footer span {
    color: #888888;
    font-size: 12px;
}

.auth-back-link {
    display: block;
    margin-top: 22px;
    color: #999999;
    font-size: 13px;
    text-align: center;
    text-decoration: none;
}

.auth-back-link:hover {
    color: #e50914;
}

@media (max-width: 600px) {
    .auth-card {
        padding: 28px 20px;
    }

    .auth-card h1 {
        font-size: 34px;
    }
}
/* Hesabım sayfası */

.account-info {
    display: grid;
    gap: 12px;
    margin: 25px 0;
}

.account-info-item {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: #080808;
}

.account-info-item span {
    color: #888888;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.account-info-item strong {
    color: #ffffff;
    font-size: 14px;
    overflow-wrap: anywhere;
}

.account-orders-placeholder {
    margin: 25px 0;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(229, 9, 20, 0.05);
    text-align: center;
}

.account-orders-placeholder h2 {
    margin: 9px 0;
    color: #ffffff;
    font-size: 20px;
}

.account-orders-placeholder p {
    margin: 0;
    color: #999999;
    font-size: 12px;
    line-height: 1.6;
}
/* ------------------------------
   HESABIM SİPARİŞ TAKİBİ
------------------------------ */

.account-orders-section {
    margin: 28px 0;
}

.account-orders-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 18px;
}

.account-orders-heading h2 {
    margin: 5px 0 0;
    color: #ffffff;
    font-size: 24px;
}

.account-store-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.account-store-link:hover {
    border-color: #e50914;
    color: #e50914;
}

.account-orders-message {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: #aaaaaa;
    text-align: center;
}

.account-orders-message.empty {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.account-orders-message.empty strong {
    color: #ffffff;
    font-size: 17px;
}

.account-orders-message.error {
    border-color: rgba(255, 70, 70, 0.4);
    color: #ff7474;
}

.account-orders-list {
    display: grid;
    gap: 20px;
}

.account-order-card {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: #080808;
}

.account-order-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.account-order-header span {
    color: #888888;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.account-order-header h3 {
    margin: 5px 0 0;
    color: #ffffff;
    font-size: 20px;
}

.order-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 35px;
    padding: 0 13px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    white-space: nowrap;
}

.order-status-badge.received {
    background: rgba(59, 130, 246, 0.15);
    color: #74aaff;
}

.order-status-badge.payment-waiting,
.order-status-badge.payment-checking {
    background: rgba(245, 158, 11, 0.15);
    color: #ffbd45;
}

.order-status-badge.preparing {
    background: rgba(168, 85, 247, 0.15);
    color: #c88cff;
}

.order-status-badge.delivered {
    background: rgba(34, 197, 94, 0.15);
    color: #68df85;
}

.order-status-badge.cancelled {
    background: rgba(239, 68, 68, 0.15);
    color: #ff7474;
}

.order-status-badge.default {
    background: rgba(255, 255, 255, 0.08);
    color: #dddddd;
}

.order-progress {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 24px 0;
}

.order-progress-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.order-progress-step::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.order-progress-step:first-child::before {
    left: 50%;
    width: 50%;
}

.order-progress-step:last-child::before {
    width: 50%;
}

.order-progress-step span {
    position: relative;
    z-index: 2;
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    border: 2px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    background: #080808;
    color: #777777;
    font-size: 11px;
    font-weight: 900;
}

.order-progress-step strong {
    color: #777777;
    font-size: 10px;
}

.order-progress-step.active::before {
    background: #e50914;
}

.order-progress-step.active span {
    border-color: #e50914;
    background: #e50914;
    color: #ffffff;
}

.order-progress-step.active strong {
    color: #ffffff;
}

.order-cancelled-message {
    margin: 20px 0;
    padding: 14px;
    border: 1px solid rgba(239, 68, 68, 0.35);
    border-radius: 9px;
    background: rgba(239, 68, 68, 0.08);
    color: #ff7474;
    font-weight: 800;
    text-align: center;
}

.account-order-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 22px;
}

.account-order-meta > div {
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 9px;
    background: #050505;
}

.account-order-meta span {
    display: block;
    margin-bottom: 6px;
    color: #777777;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.account-order-meta strong {
    color: #ffffff;
    font-size: 12px;
}

.account-order-products,
.account-order-game-info {
    margin-top: 18px;
}

.account-order-products h4,
.account-order-game-info h4 {
    margin: 0 0 11px;
    color: #ffffff;
    font-size: 13px;
}

.account-order-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.account-order-item:last-child {
    border-bottom: none;
}

.account-order-item > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.account-order-item strong {
    color: #ffffff;
    font-size: 12px;
}

.account-order-item span {
    color: #888888;
    font-size: 10px;
}

.account-order-item-price {
    align-items: flex-end;
    text-align: right;
}

.account-order-game-info {
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 9px;
    background: #050505;
}

.account-order-game-info p {
    margin: 7px 0;
    color: #999999;
    font-size: 11px;
}

.account-order-game-info strong {
    color: #ffffff;
}

.order-history {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    padding-top: 16px;
}

.order-history summary {
    cursor: pointer;
    color: #dddddd;
    font-size: 12px;
    font-weight: 800;
}

.order-history-list {
    display: grid;
    gap: 14px;
    margin-top: 17px;
}

.order-history-item {
    display: flex;
    gap: 12px;
}

.order-history-dot {
    flex: 0 0 auto;
    width: 9px;
    height: 9px;
    margin-top: 4px;
    border-radius: 50%;
    background: #e50914;
}

.order-history-item div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.order-history-item strong {
    color: #ffffff;
    font-size: 11px;
}

.order-history-item small {
    color: #777777;
    font-size: 9px;
}

.order-history-item p {
    margin: 2px 0 0;
    color: #999999;
    font-size: 10px;
}

.account-order-empty-text {
    color: #888888;
    font-size: 11px;
}

@media (max-width: 650px) {
    .account-orders-heading {
        align-items: stretch;
        flex-direction: column;
    }

    .account-store-link {
        width: 100%;
    }

    .account-order-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .account-order-meta {
        grid-template-columns: 1fr;
    }

    .order-progress {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .order-progress-step {
        align-items: flex-start;
        flex-direction: row;
        text-align: left;
    }

    .order-progress-step::before {
        display: none;
    }
}
.auth-form-help {
    display: flex;
    justify-content: flex-end;
    margin: -6px 0 18px;
}

.auth-form-help a {
    color: #aaaaaa;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.auth-form-help a:hover {
    color: #e50914;
}