:root {
    --bg-color: #030305;
    --surface-color: #0F0F16;
    --surface-hover: #161620;
    --primary-color: #6366F1;
    --primary-glow: rgba(99, 102, 241, 0.3);
    --accent-color: #A855F7;
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --border-color: rgba(255, 255, 255, 0.06);
    --gradient-main: linear-gradient(90deg, #6366F1 0%, #A855F7 50%, #FF8C00 100%);
    --header-height: 80px
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    line-height: 1.2
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: none;
    letter-spacing: -0.2px
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.2)
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4)
}

.btn-outline {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: white;
    backdrop-filter: blur(10px)
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px) scale(1.03)
}

.bg-glow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
    background-color: var(--bg-color)
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    animation: float 20s infinite alternate cubic-bezier(0.45, 0, 0.55, 1)
}

.blob-1 {
    width: 700px;
    height: 700px;
    background: #860e9c;
    top: -10%;
    left: -10%
}

.blob-2 {
    width: 600px;
    height: 600px;
    background: #ff2e54;
    bottom: 10%;
    right: -5%;
    animation-duration: 25s;
    animation-delay: -5s
}

.blob-3 {
    width: 500px;
    height: 500px;
    background: #ff9004;
    top: 40%;
    left: 30%;
    animation-duration: 30s;
    animation-delay: -10s
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg)
    }

    100% {
        transform: translate(100px, 50px) rotate(30deg)
    }
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, transparent 0%, var(--bg-color) 100%);
    opacity: 0.5;
    pointer-events: none
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background: rgba(3, 3, 5, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px
}

.nav-links {
    display: flex;
    gap: 32px
}

.nav-links a {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500
}

.nav-links a:hover {
    color: white
}

.user-auth-section {
    display: flex;
    align-items: center;
    gap: 16px
}

.user-info-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease
}

.user-info-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2)
}

.logout-link {
    font-size: 0.85rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s
}

.logout-link:hover {
    color: #EF4444
}

.pricing-hero {
    padding: 160px 0 80px;
    text-align: center;
    position: relative
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, rgba(3, 3, 5, 0) 70%);
    filter: blur(100px);
    z-index: -1
}

.pricing-hero h1 {
    font-size: 4rem;
    margin-bottom: 24px;
    letter-spacing: -2px
}

.pricing-hero span {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.pricing-hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto
}

.pricing-section {
    padding: 40px 0 120px
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 80px
}

.price-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    padding: 48px 40px;
    border-radius: 32px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden
}

.price-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
    background: var(--surface-hover);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5)
}

.price-card.featured {
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.05);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.1)
}

.price-card.featured::after {
    content: 'En Popüler';
    position: absolute;
    top: 24px;
    right: -32px;
    background: var(--gradient-main);
    color: white;
    padding: 8px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
    text-transform: uppercase
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 12px
}

.plan-price {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 32px;
    font-family: 'Outfit', sans-serif
}

.plan-price span {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400
}

.plan-features {
    list-style: none;
    margin-bottom: 48px;
    flex-grow: 1
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--text-secondary);
    font-size: 1rem
}

.plan-features li i {
    color: var(--primary-color);
    font-size: 0.9rem
}

.extra-packs-section {
    padding: 40px 0 100px;
    text-align: center
}

.extra-packs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 40px auto 0
}

.pack-card {
    background: #0A0A0F;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative
}

.pack-card:hover {
    background: #111119;
    border-color: rgba(168, 85, 247, 0.4);
    transform: translateY(-5px)
}

.pack-card.featured {
    border-color: #A855F7;
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.15)
}

.pack-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #A855F7
}

.pack-card.featured .pack-icon {
    color: #F59E0B
}

.pack-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    font-family: 'Outfit', sans-serif
}

.pack-price {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    font-family: 'Outfit', sans-serif
}

.btn-pack {
    width: 100%;
    padding: 12px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-align: center
}

.pack-card.featured .btn-pack {
    background: var(--gradient-main);
    border: none;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3)
}

.btn-pack:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.02)
}

.section-title {
    text-align: center;
    margin-bottom: 60px
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 16px
}

.faq-container {
    max-width: 800px;
    margin: 0 auto 120px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.faq-item {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease
}

.faq-question {
    padding: 24px 32px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem
}

.faq-question:hover {
    background: var(--surface-hover)
}

.faq-answer {
    padding: 0 32px 32px;
    color: var(--text-secondary);
    display: none;
    line-height: 1.7
}

.faq-item.active {
    border-color: var(--primary-color)
}

.faq-item.active .faq-answer {
    display: block
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary-color)
}

footer {
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px;
    background: var(--surface-color)
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 16px;
    max-width: 300px
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: white
}

.footer-col ul li {
    margin-bottom: 12px;
    list-style: none
}

.footer-col ul li a {
    color: var(--text-secondary)
}

.footer-col ul li a:hover {
    color: var(--primary-color)
}

.copyright {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05)
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    opacity: 0
}

.modal-overlay.active {
    display: flex;
    opacity: 1
}

.modal-content {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(20px);
    transition: all 0.4s ease
}

.modal-overlay.active .modal-content {
    transform: translateY(0)
}

.close-modal {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s
}

.close-modal:hover {
    color: white
}

@media (max-width:768px) {
    .pricing-hero {
        padding: 100px 0 60px
    }

    .pricing-hero h1 {
        font-size: 2.8rem
    }

    .pricing-hero p {
        font-size: 1.1rem;
        padding: 0 15px
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
        gap: 25px
    }

    .price-card {
        padding: 40px 30px
    }

    .plan-name {
        font-size: 1.4rem
    }

    .plan-price {
        font-size: 3rem
    }

    .extra-packs-grid {
        grid-template-columns: 1fr;
        padding: 0 15px
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .mobile-menu-btn {
        display: block !important
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: rgba(15, 15, 22, 0.95);
        backdrop-filter: blur(20px);
        padding: 30px;
        gap: 20px;
        border-bottom: 1px solid var(--border-color);
        z-index: 999
    }

    .nav-links.active {
        display: flex
    }
}