﻿html {
    scroll-behavior: smooth;
}
/* GENEL SIFIRLAMA */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #050005;
    color: #fff;
    overflow-x: hidden;
}

/* YAGMUR CANVAS */
#rainCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

/* NAVBAR */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(10,0,10,0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #330033;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 1px;
    color: white;
    text-decoration: none;
    text-shadow: 0 0 10px #ff00de;
}

.logo-icon {
    width: 35px;
    height: 35px;
    background: #ff00de;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 20px;
    box-shadow: 0 0 15px #ff00de;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

    .nav-links a {
        text-decoration: none;
        color: #aaa;
        font-weight: 500;
        transition: 0.3s;
        font-size: 15px;
    }

        .nav-links a:hover, .nav-links a.active {
            color: #ff00de;
            text-shadow: 0 0 8px #ff00de;
        }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon {
    position: relative;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
}

    .cart-icon:hover {
        color: #ff00de;
    }

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff00de;
    color: white;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 50%;
    font-weight: bold;
    box-shadow: 0 0 5px #ff00de;
}

.btn-login {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

    .btn-login:hover {
        color: #fff;
    }

.btn-register {
    background: #222;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    border: 1px solid #444;
    transition: 0.3s;
}

    .btn-register:hover {
        background: #ff00de;
        border-color: #ff00de;
        box-shadow: 0 0 10px #ff00de;
    }

.btn-discord {
    background: #1a001a;
    color: #ffccff;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid #550055;
    transition: 0.3s;
}

    .btn-discord:hover {
        background: #5865F2;
        border-color: #5865F2;
        color: white;
    }

/* HERO SECTION */
header {
    height: 100vh;
    background: linear-gradient(to right, rgba(20,0,20,0.9), rgba(5,0,5,0.8)), url('image_5.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    padding-top: 60px;
}

.container {
    width: 85%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-text {
    width: 50%;
}

.badge {
    color: #ff00de;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
    text-shadow: 0 0 10px rgba(255,0,222,0.5);
}

h1 {
    font-size: 60px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0,0,0,0.8);
}

p {
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 16px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-primary {
    background: #ff00de;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(255,0,222,0.4);
    transition: 0.3s;
    cursor: pointer;
    border: none;
}

    .btn-primary:hover {
        background: #d900bd;
        transform: translateY(-2px);
        box-shadow: 0 0 30px rgba(255,0,222,0.6);
    }

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid #444;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

    .btn-secondary:hover {
        border-color: #ff00de;
        color: #ff00de;
        background: rgba(255,0,222,0.1);
    }

.tags {
    display: flex;
    gap: 10px;
}

    .tags span {
        background: rgba(21,5,21,0.8);
        border: 1px solid #331033;
        padding: 8px 15px;
        border-radius: 20px;
        font-size: 12px;
        color: #aaa;
    }

.hero-box {
    width: 45%;
    position: relative;
}

.box-content {
    background: linear-gradient(145deg, #0f050f 0%, #050005 100%);
    border: 1px solid #2a0a2a;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 30px rgba(255,0,222,0.1);
}

    .box-content h3 {
        font-size: 22px;
        margin-bottom: 20px;
        color: #ffccff;
    }

    .box-content ul {
        list-style: none;
    }

    .box-content li {
        margin-bottom: 15px;
        color: #bbb;
        font-size: 15px;
        display: flex;
        align-items: center;
    }

        .box-content li::before {
            content: "♦";
            color: #ff00de;
            margin-right: 12px;
            font-size: 12px;
            text-shadow: 0 0 5px #ff00de;
        }

.glow-effect {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,0,222,0.15) 0%, rgba(0,0,0,0) 70%);
    top: -50px;
    right: -50px;
    z-index: 1;
}

/* FEATURES */
section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
}

.red-text {
    color: #ff00de;
    text-shadow: 0 0 10px rgba(255,0,222,0.5);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(10,10,10,0.8);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #222;
    transition: 0.3s;
    text-align: center;
    backdrop-filter: blur(5px);
}

    .feature-card:hover {
        border-color: #ff00de;
        transform: translateY(-10px);
        box-shadow: 0 0 20px rgba(255,0,222,0.2);
    }

    .feature-card .icon {
        font-size: 40px;
        margin-bottom: 20px;
        text-shadow: 0 0 10px rgba(255,255,255,0.3);
    }

/* PRICING */
.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.price-card {
    background: rgba(10,10,10,0.8);
    padding: 40px;
    width: 320px;
    border-radius: 20px;
    border: 1px solid #222;
    text-align: center;
    position: relative;
    transition: 0.3s;
    backdrop-filter: blur(5px);
}

    .price-card.popular {
        border: 1px solid #ff00de;
        background: linear-gradient(180deg, #1a001a 0%, #0a0a0a 100%);
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(255,0,222,0.15);
    }

.pop-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff00de;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    color: white;
}

.price {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    margin: 20px 0;
    text-shadow: 0 0 10px #ff00de;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    padding-left: 20px;
}

    .features-list li {
        margin-bottom: 12px;
        color: #aaa;
        font-size: 14px;
    }

.btn-buy {
    display: block;
    background: #111;
    color: #fff;
    padding: 15px;
    width: 100%;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    border: 1px solid #333;
    cursor: pointer;
}

    .btn-buy:hover, .glow-btn {
        background: #ff00de;
        border-color: #ff00de;
        box-shadow: 0 0 15px rgba(255,0,222,0.4);
    }

footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid #222;
    color: #555;
    background: #020000;
    position: relative;
    z-index: 2;
}

/* --- CART PAGE (SEPET) DUZELTMELERI --- */
.cart-container {
    width: 80%;
    margin: 120px auto;
    min-height: 60vh;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: rgba(10,10,10,0.9);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #331033;
}

    .cart-table th {
        background: #1a001a;
        padding: 20px;
        text-align: left;
        color: #ffccff;
        font-weight: 600;
        border-bottom: 1px solid #331033;
    }

    .cart-table td {
        padding: 20px;
        border-bottom: 1px solid #222;
        color: #fff;
        vertical-align: middle;
    }

.cart-item-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-item-icon {
    width: 40px;
    height: 40px;
    background: #330033;
    color: #ff00de;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 20px;
}

.btn-remove {
    color: #666;
    cursor: pointer;
    transition: 0.3s;
    font-size: 18px;
}

    .btn-remove:hover {
        color: #ff00de;
        transform: scale(1.2);
    }

.cart-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    align-items: center;
    padding: 20px;
    background: rgba(10,10,10,0.9);
    border-radius: 10px;
    border: 1px solid #331033;
}

.back-link {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

    .back-link:hover {
        color: #ff00de;
    }

.cart-summary-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.cart-total {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
}

    .cart-total span {
        color: #ff00de;
        text-shadow: 0 0 10px rgba(255,0,222,0.5);
    }

.empty-cart-msg {
    text-align: center;
    padding: 50px;
    color: #666;
    font-size: 18px;
    background: rgba(10,10,10,0.8);
    border-radius: 10px;
    border: 1px solid #222;
}

/* --- CHECKOUT PAGE (ODEME) DUZELTMELERI --- */
.checkout-body {
    background: #050005;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.checkout-nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 8%;
    border-bottom: 1px solid #330033;
    background: #0a000a;
}

.checkout-container {
    display: flex;
    width: 85%;
    margin: 50px auto;
    gap: 40px;
    align-items: flex-start;
}

/* Sol Taraf: Form */
.payment-section {
    flex: 2;
    background: rgba(10,10,10,0.9);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #331033;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

    .payment-section h2 {
        margin-bottom: 30px;
        font-size: 24px;
        color: #fff;
        border-bottom: 1px solid #222;
        padding-bottom: 15px;
    }

.payment-methods {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.method {
    flex: 1;
    padding: 15px;
    border: 1px solid #333;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    color: #aaa;
    background: #0f050f;
    font-weight: 600;
}

    .method:hover {
        border-color: #666;
        color: #fff;
    }

    .method.active {
        border-color: #ff00de;
        background: rgba(255,0,222,0.1);
        color: #ff00de;
        box-shadow: 0 0 10px rgba(255,0,222,0.2);
    }

.input-group {
    margin-bottom: 20px;
}

    .input-group label {
        display: block;
        margin-bottom: 8px;
        color: #ccc;
        font-size: 14px;
        font-weight: 500;
    }

    .input-group input {
        width: 100%;
        padding: 15px;
        background: #050005;
        border: 1px solid #333;
        border-radius: 8px;
        color: #fff;
        outline: none;
        transition: 0.3s;
        font-size: 15px;
    }

        .input-group input:focus {
            border-color: #ff00de;
            box-shadow: 0 0 8px rgba(255,0,222,0.3);
        }

.row {
    display: flex;
    gap: 20px;
}

    .row .input-group {
        flex: 1;
    }

.btn-pay {
    width: 100%;
    padding: 18px;
    background: #ff00de;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 20px;
    box-shadow: 0 0 15px rgba(255,0,222,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .btn-pay:hover {
        background: #d900bd;
        box-shadow: 0 0 25px rgba(255,0,222,0.6);
        transform: translateY(-2px);
    }

/* Sag Taraf: Ozet */
.summary-section {
    flex: 1;
    position: sticky;
    top: 100px;
}

.summary-card {
    background: rgba(10,10,10,0.9);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #331033;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.summary-section h3 {
    margin-bottom: 20px;
    color: #ffccff;
    font-size: 20px;
}

.item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
    font-weight: bold;
    font-size: 16px;
}

.item-title {
    color: #fff;
}

.item-price {
    color: #ff00de;
}

.summary-features {
    list-style: none;
    margin-bottom: 25px;
    padding: 0;
}

    .summary-features li {
        margin-bottom: 12px;
        color: #aaa;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

.total-row {
    display: flex;
    justify-content: space-between;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    padding-top: 20px;
    border-top: 1px solid #333;
    margin-top: 20px;
}

.total-price {
    color: #ff00de;
    text-shadow: 0 0 10px rgba(255,0,222,0.5);
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    font-size: 13px;
    color: #666;
    font-weight: 600;
}

/* Promo Box Duzeltmeleri */
.promo-box {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #222;
}

.promo-input-group {
    display: flex;
    gap: 10px;
}

.promo-input {
    flex: 1;
    padding: 12px;
    background: #050005;
    border: 1px solid #333;
    border-radius: 6px;
    color: #fff;
    outline: none;
    text-transform: uppercase;
    font-weight: bold;
}

    .promo-input:focus {
        border-color: #ff00de;
    }

.btn-apply {
    padding: 0 20px;
    background: #222;
    color: #fff;
    border: 1px solid #444;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

    .btn-apply:hover {
        background: #ff00de;
        border-color: #ff00de;
        color: white;
    }

.discount-row {
    display: flex;
    justify-content: space-between;
    color: #00ff00;
    font-size: 15px;
    margin-top: 15px;
    font-weight: 600;
    display: none;
}

/* AUTH PAGES */
.auth-body {
    background: url('image_5.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.auth-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 1;
}

.auth-container {
    position: relative;
    z-index: 2;
    background: rgba(10,10,10,0.9);
    padding: 40px;
    width: 400px;
    border-radius: 15px;
    border: 1px solid #331033;
    box-shadow: 0 0 30px rgba(255,0,222,0.2);
    text-align: center;
    backdrop-filter: blur(10px);
}

.auth-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 0 0 10px #ff00de;
}

.auth-links {
    margin-top: 20px;
    font-size: 14px;
    color: #888;
}

    .auth-links a {
        color: #ff00de;
        text-decoration: none;
    }

/* RESPONSIVE */
@media (max-width: 900px) {
    .checkout-container {
        flex-direction: column-reverse;
        width: 95%;
        gap: 30px;
    }

    .payment-section, .summary-section {
        width: 100%;
    }

    .hero-layout {
        flex-direction: column;
        text-align: center;
    }

    .hero-text, .hero-box {
        width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .nav-links {
        display: none;
    }
}
