/* === STYLES FROM global.css === */
/* ============================================
   GLOBALNE ZMIENNE I RESET
   ============================================ */
:root {
    --primary-dark: var(--bg-primary, #040814);
    --primary-black: var(--bg-secondary, #0b1126);
    --secondary-black: var(--bg-tertiary, #131b38);
    --accent-purple: var(--accent-color, #00a8ff);
    --accent-lavender: #00d2ff;
    --light-purple: #9fdfff;
    --text-white: var(--text-primary, #f5f6fa);
    --text-gray: var(--text-secondary, #a4b0be);
    --timeline-color: var(--accent-color, #00a8ff);
    --success-green: #2ecc71;
    --glow-purple: var(--accent-glow, rgba(0, 168, 255, 0.35));
    --glow-lavender: rgba(0, 210, 255, 0.2);
    
    --accent-rgb: 0, 168, 255;
    --accent-light-rgb: 0, 210, 255;
    --glass-border: var(--border-color, rgba(0, 168, 255, 0.15));
}

* {
    box-sizing: border-box;
}

body {
    user-select: none; /* Blokada zaznaczania tekstu */
    font-family: 'Outfit', sans-serif;
}
img {
    filter: none !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === STYLES FROM layout.css === */
/* ============================================
   NAWIGACJA (HEADER)
   ============================================ */
header {
    background-color: rgba(7, 7, 10, 0.95);
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid var(--accent-purple);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.logo-group {
    display: flex;
    align-items: center;
}

.logo {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-white);
    text-decoration: none;
    letter-spacing: -1px;
    transition: all 0.3s;
}

.logo span {
    color: var(--accent-purple);
}

.logo:hover {
    text-shadow: 0 0 15px var(--glow-purple);
    transform: scale(1.05);
}

/* NOWY PRZYCISK OGSIEC W NAGŁÓWKU */
/* NOWY PRZYCISK OGSIEC W NAGŁÓWKU - STYL JAK SKLEP */
/* Styl .nav-btn-ogsiec usunięty / zastąpiony przez .nav-btn */

nav ul {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    align-items: center;
}

nav a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 1.05rem;
    position: relative;
    padding: 0.5rem 0;
}

nav a:not(.nav-btn)::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-lavender));
    transition: width 0.4s;
}

nav a:hover {
    color: var(--text-white);
    text-shadow: 0 0 10px var(--accent-lavender);
}

nav a:hover::before {
    width: 100%;
}

/* PRZYCISK SKLEP */
.nav-btn {
    background: rgba(var(--accent-rgb), 0.15);
    border: 2px solid var(--accent-purple) !important;
    padding: 0.6rem 1.4rem !important;
    border-radius: 8px;
    transition: all 0.3s !important;
}

.nav-btn::before {
    display: none !important;
}

.nav-btn:hover {
    background: var(--accent-purple) !important;
    color: white !important;
    box-shadow: 0 0 20px var(--glow-purple);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    nav ul {
        gap: 1rem;
    }

    nav a {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }
}

/* ============================================
   STOPKA (FOOTER)
   ============================================ */
footer {
    background-color: #050508;
    padding: 5rem 5% 2rem;
    border-top: 2px solid var(--accent-purple);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-section h3 {
    font-size: 1.6rem;
    margin-bottom: 1.8rem;
    color: var(--accent-lavender);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-logo-row .logo {
    display: block;
}

/* STOPKA PRZYCISK OGSIEC (jeden styl dla wszystkich) */
/* STOPKA PRZYCISK OGSIEC - STYL JAK SKLEP */
.footer-btn-ogsiec {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem 2rem;
    background: rgba(var(--accent-rgb), 0.15);
    border: 2px solid var(--accent-purple);
    color: white;
    text-decoration: none;
    font-weight: 800;
    border-radius: 10px;
    font-size: 1.2rem;
    transition: all 0.4s;
    box-shadow: 0 0 20px var(--glow-purple);
    width: fit-content;
}

.footer-btn-ogsiec:hover {
    background: var(--accent-purple);
    box-shadow: 0 0 35px var(--accent-purple);
    transform: translateY(-5px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.footer-links a:hover {
    color: var(--accent-lavender);
    transform: translateX(8px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(194, 181, 214, 0.5);
    font-size: 0.95rem;
}

/* === STYLES FROM buttons.css === */
/* ============================================
   PRZYCISKI I IP
   ============================================ */
.nav-btn {
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-lavender));
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    text-shadow: none;
}

.nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(var(--accent-rgb), 0.4);
}

.cta-button {
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-lavender));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button:hover {
    transform: translateY(-5px);
    color: white;
    box-shadow: 0 15px 30px rgba(var(--accent-rgb), 0.4);
}

.server-ip {
    background-color: rgba(26, 26, 36, 0.8);
    border: 2px solid var(--accent-purple);
    border-radius: 10px;
    padding: 1.2rem 2rem;
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    cursor: pointer;
    transition: all 0.3s;
}

.copy-tooltip {
    position: fixed;
    background: var(--accent-purple);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s;
}

.copy-tooltip.show {
    opacity: 1;
    transform: translateY(0);
}

/* === STYLES FROM components.css === */
/* ============================================
   KOMPONENTY (Karty, Timeline, Akordeon)
   ============================================ */

/* ADMINISTRACJA - KARTY */
.admins-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1100px;
    margin: 3rem auto 0;
}

@media (max-width: 1024px) {
    .admins-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .admins-grid {
        grid-template-columns: 1fr;
    }
}


.admin-card {
    background: rgba(20, 20, 29, 0.6);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(var(--accent-rgb), 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 450px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.admin-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.admin-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-purple);
    box-shadow: 0 10px 40px rgba(var(--accent-rgb), 0.3);
}

.admin-card:hover::before {
    opacity: 1;
}

.admin-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid transparent;
    background: linear-gradient(var(--secondary-black), var(--secondary-black)) padding-box,
        linear-gradient(90deg, var(--accent-purple), var(--accent-lavender)) border-box;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.admin-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

/* ODDZIELENIE DLA ROLI */
.admin-role-container {
    margin: 1rem 0 1.5rem;
    position: relative;
    z-index: 1;
}

.admin-role {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-lavender));
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(var(--accent-rgb), 0.4);
}

.admin-role i {
    font-size: 0.8rem;
    opacity: 0.8;
}

.admin-role-line {
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-purple), transparent);
    margin: 0.8rem auto 0;
}

.admin-description {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

/* HISTORIA - TIMELINE */
.timeline-section {
    padding: 8rem 5%;
    position: relative;
}

.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, transparent, var(--accent-purple), var(--accent-lavender), transparent);
    transform: translateX(-50%);
    box-shadow: 0 0 15px var(--glow-purple);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 6rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-content {
    width: 42%;
    background: rgba(26, 26, 36, 0.8);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(var(--accent-rgb), 0.2);
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.4s;
}

.timeline-content:hover {
    border-color: var(--accent-purple);
    box-shadow: 0 0 30px rgba(var(--accent-rgb), 0.2);
    transform: scale(1.02);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    width: 24px;
    height: 24px;
    background: var(--accent-lavender);
    border: 5px solid var(--primary-dark);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px var(--accent-lavender);
    z-index: 5;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    color: var(--accent-lavender);
    font-weight: 800;
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.timeline-title {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: white;
    font-weight: 700;
}

.timeline-desc {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }

    .timeline-dot {
        left: 30px;
    }

    .timeline-content {
        width: 85%;
        margin-left: 60px !important;
        text-align: left !important;
    }

    .timeline-item {
        flex-direction: row !important;
    }
}



/* SCROLL BOX - REGULAMIN */
.scroll-container {
    max-height: 70vh;
    overflow-y: auto;
    padding: 3rem;
    background: rgba(20, 20, 29, 0.6);
    border: 1px solid rgba(var(--accent-rgb), 0.2);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    color: var(--text-gray);
    line-height: 1.8;
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.scroll-container h2 {
    color: white;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
    font-weight: 700;
    border-left: 4px solid var(--accent-purple);
    padding-left: 15px;
}

.scroll-container h2:first-child {
    margin-top: 0;
}

.scroll-container p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.scroll-container ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.scroll-container ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 1rem;
}

.scroll-container ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-purple);
    font-weight: bold;
}

.scroll-container strong {
    color: white;
}

/* Custom Scrollbar Styles */
.scroll-container::-webkit-scrollbar {
    width: 8px;
}

.scroll-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.scroll-container::-webkit-scrollbar-thumb {
    background: var(--accent-purple);
    border-radius: 10px;
}

.scroll-container::-webkit-scrollbar-thumb:hover {
    background: var(--accent-lavender);
}

/* SIDEBAR REGULAMINU */
.reg-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    width: 100%;
}

.reg-sidebar {
    width: 300px;
    background: rgba(26, 26, 36, 0.4);
    border: 1px solid rgba(var(--accent-rgb), 0.1);
    border-radius: 20px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    position: sticky;
    top: 100px;
    flex-shrink: 0;
}

.reg-nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1.2rem 1.5rem;
    color: var(--text-gray);
    text-decoration: none;
    border-radius: 15px;
    font-weight: 600;
    transition: all 0.3s;
    margin-bottom: 5px;
}

.reg-nav-item i {
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.reg-nav-item:hover {
    background: rgba(var(--accent-rgb), 0.1);
    color: white;
}

.reg-nav-item.active {
    background: rgba(var(--accent-rgb), 0.2);
    color: var(--accent-lavender);
    border: 1px solid rgba(var(--accent-rgb), 0.2);
}

@media (max-width: 992px) {
    .reg-layout {
        flex-direction: column;
    }
    .reg-sidebar {
        width: 100%;
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }
}



/* === STYLES FROM sections.css === */
/* ============================================
   SEKCJE SPECJALNE (HERO, KONTAKT)
   ============================================ */
.hero {
    padding: 12rem 5% 8rem;
    text-align: center;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #fff, var(--light-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.3;
    padding-bottom: 0.2rem;
    font-weight: 800;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.4rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.server-ip {
    background: rgba(var(--accent-rgb), 0.1);
    border: 1px solid var(--accent-purple);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 2.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 0 20px var(--glow-purple);
}

.server-ip:hover {
    background: var(--accent-purple);
    box-shadow: 0 0 30px var(--accent-purple);
    transform: scale(1.05);
}

/* KONTAKT */
.contact-section {
    padding: 10rem 5%;
    text-align: center;
}

.contact-simple {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(20, 20, 29, 0.6);
    padding: 4rem;
    border-radius: 25px;
    border: 1px solid rgba(var(--accent-rgb), 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.4s;
}

.contact-simple:hover {
    border-color: var(--accent-purple);
    box-shadow: 0 20px 60px rgba(var(--accent-rgb), 0.15);
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    transition: all 0.3s;
}

.contact-item:hover {
    background: rgba(var(--accent-rgb), 0.1);
    transform: translateX(10px);
}

.contact-item i {
    font-size: 2rem;
    color: var(--accent-lavender);
}

.contact-details {
    text-align: left;
}

.contact-label {
    display: block;
    font-size: 0.9rem;
    color: var(--accent-lavender);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.contact-value {
    font-size: 1.2rem;
    color: white;
    font-weight: 500;
    text-decoration: none;
}



/* === STYLES FROM style.css === */
/* Ten plik jest obecnie pusty - zabezpieczenia zostały usunięte */

/* === SHOP SPECIFIC INLINE STYLES === */
.mode-selection {
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
            margin-top: 4rem;
        }

        .mode-card {
            background: rgba(20, 20, 29, 0.6);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(var(--accent-rgb), 0.2);
            border-radius: 20px;
            padding: 2.5rem;
            width: 350px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .mode-card:hover {
            transform: translateY(-15px);
            border-color: var(--accent-purple);
            box-shadow: 0 15px 35px rgba(var(--accent-rgb), 0.3);
        }

        .mode-image {
            width: 100%;
            height: 200px;
            border-radius: 15px;
            margin-bottom: 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: var(--accent-lavender);
            border: 1px solid var(--glass-border);
            background-size: cover;
            background-position: center;
        }

        .mode-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: white;
        }

        .mode-description {
            color: var(--text-gray);
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .mode-btn {
            background: linear-gradient(135deg, var(--accent-purple), var(--accent-lavender));
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            width: 100%;
        }

        .mode-btn:hover {
            box-shadow: 0 5px 15px rgba(var(--accent-light-rgb), 0.4);
            transform: scale(1.02);
        }

        /* SOON BADGE */
        .mode-card.soon {
            filter: grayscale(0.8);
            opacity: 0.8;
            cursor: not-allowed;
            pointer-events: none;
        }

        .soon-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(135deg, #FF416C, #FF4B2B);
            color: white;
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 5px 15px rgba(255, 65, 108, 0.4);
            z-index: 10;
        }

        /* PACKAGES STYLES */
        .packages-selection {
            display: none;
            flex-direction: column;
            align-items: center;
            width: 100%;
            animation: fadeIn 0.5s ease-out;
        }

        .selection-header {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            margin-bottom: 3rem;
        }

        .back-btn {
            position: absolute;
            left: 0;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--glass-border);
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
        }

        .back-btn:hover {
            background: rgba(var(--accent-rgb), 0.2);
            border-color: var(--accent-purple);
            transform: translateX(-5px);
        }

        .packages-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            width: 100%;
            max-width: 1200px;
        }

        .package-card {
            background: rgba(25, 25, 35, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(var(--accent-rgb), 0.2);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            transition: all 0.4s;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 480px;
            width: 300px;
        }

        .package-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-purple);
            box-shadow: 0 15px 35px rgba(var(--accent-rgb), 0.2);
        }

        .package-icon {
            margin-bottom: 1.5rem;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 160px;
        }

        .package-icon img {
            max-width: 160px;
            max-height: 160px;
            object-fit: contain;
            filter: drop-shadow(0 0 15px rgba(var(--accent-rgb), 0.4));
        }

        .package-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: white;
        }

        .package-price {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--accent-lavender);
            margin-bottom: 1.5rem;
        }

        .package-price span {
            font-size: 1.2rem;
            font-weight: 600;
            opacity: 0.7;
        }

        .package-buy-btn,
        .package-cart-btn {
            color: white;
            padding: 0.9rem;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 0.85rem;
            flex: 1;
        }

        .package-buy-btn {
            background: linear-gradient(135deg, var(--accent-purple), var(--accent-lavender));
        }

        .package-cart-btn {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(var(--accent-rgb), 0.3);
        }

        .package-btns {
            display: flex;
            gap: 10px;
            margin-top: 1rem;
        }

        .package-buy-btn:hover {
            box-shadow: 0 5px 20px rgba(var(--accent-rgb), 0.4);
            transform: translateY(-2px);
        }

        .package-cart-btn:hover {
            background: rgba(var(--accent-rgb), 0.1);
            border-color: var(--accent-purple);
        }

        /* FLOATING CART BUTTON */
        .floating-cart {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--accent-purple), var(--accent-lavender));
            border-radius: 50%;
            display: none;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1500;
            box-shadow: 0 0 30px var(--glow-purple);
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .floating-cart:hover {
            transform: scale(1.1) rotate(-10deg);
        }

        .cart-count {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #ff4757;
            color: white;
            min-width: 25px;
            height: 25px;
            border-radius: 50%;
            font-size: 0.8rem;
            font-weight: 800;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 2px;
            border: 2px solid var(--primary-dark);
        }

        /* CART SIDEBAR */
        .cart-sidebar {
            position: fixed;
            top: 80px;
            right: -300px;
            width: 300px;
            height: calc(100% - 80px);
            background: rgba(20, 20, 29, 0.98);
            border-left: 1px solid rgba(var(--accent-rgb), 0.3);
            z-index: 2500;
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
            box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(20px);
        }

        .cart-sidebar.active {
            right: 0;
        }

        /* Error Message in Cart */
        .cart-error {
            background: rgba(255, 71, 87, 0.15);
            border: 1px solid #ff4757;
            color: #ff4757;
            padding: 0.8rem;
            border-radius: 10px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1rem;
            display: none;
            animation: fadeIn 0.3s ease;
            text-align: center;
        }

        .cart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .close-cart {
            font-size: 1.5rem;
            color: var(--text-gray);
            cursor: pointer;
        }

        .cart-items {
            flex: 1;
            overflow-y: auto;
            margin-bottom: 2rem;
        }

        .cart-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 1.2rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            margin-bottom: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .cart-item-img {
            width: 50px;
            height: 50px;
            object-fit: contain;
        }

        .cart-item-info {
            flex: 1;
        }

        .cart-item-name {
            font-weight: 600;
            font-size: 0.95rem;
        }

        .cart-item-price {
            color: var(--accent-lavender);
            font-weight: 700;
        }

        .remove-item {
            color: #ff4757;
            cursor: pointer;
            opacity: 0.6;
            transition: 0.3s;
        }

        .remove-item:hover {
            opacity: 1;
        }

        .cart-footer {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
        }

        .cart-total-row {
            display: flex;
            justify-content: space-between;
            font-size: 1.3rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }

        .cart-checkout-btn {
            width: 100%;
            background: linear-gradient(135deg, var(--accent-purple), var(--accent-lavender));
            color: white;
            padding: 1.2rem;
            border: none;
            border-radius: 12px;
            font-weight: 700;
            cursor: pointer;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* CHECKOUT MODAL STYLES */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(8px);
            display: none;
            justify-content: center;
            align-items: flex-start;
            padding-top: 40px;
            z-index: 2000;
            animation: fadeIn 0.3s ease-out;
        }

        .checkout-modal {
            background: rgba(20, 20, 29, 0.98);
            border: 1px solid rgba(var(--accent-rgb), 0.4);
            border-radius: 20px;
            width: 500px;
            max-width: 95%;
            max-height: 90vh;
            overflow-y: auto;
            padding: 1.5rem 1.5rem 2rem 1.5rem;
            position: relative;
            box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
            scrollbar-width: thin;
            scrollbar-color: var(--accent-purple) transparent;
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 25px;
            font-size: 1.5rem;
            color: var(--text-gray);
            cursor: pointer;
            transition: color 0.3s;
        }

        .close-modal:hover {
            color: white;
        }

        .modal-title {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 0.8rem;
            color: white;
        }

        .form-group {
            margin-bottom: 0.8rem;
        }

        .form-label {
            display: block;
            margin-bottom: 0.4rem;
            color: var(--text-white);
            font-weight: 600;
            font-size: 0.9rem;
        }

        .form-label span {
            color: #ff4757;
        }

        .form-input {
            width: 100%;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 0.8rem 1rem;
            color: white;
            font-family: inherit;
            font-size: 0.95rem;
            transition: all 0.3s;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--accent-purple);
            background: rgba(var(--accent-rgb), 0.05);
            box-shadow: 0 0 15px rgba(var(--accent-rgb), 0.2);
        }

        .apply-btn:hover {
            border-color: var(--accent-purple);
            color: white;
            background: rgba(var(--accent-rgb), 0.1);
        }

        .apply-btn.applied {
            background: var(--accent-purple) !important;
            border-color: var(--accent-purple) !important;
            color: white !important;
            box-shadow: 0 0 15px rgba(var(--accent-rgb), 0.4);
            cursor: default;
        }

        /* CUSTOM CHECKBOX STYLES */
        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 0.8rem;
            cursor: pointer;
            position: relative;
        }

        .checkbox-group input {
            position: absolute;
            opacity: 0;
            cursor: pointer;
            height: 0;
            width: 0;
        }

        .checkmark {
            height: 24px;
            width: 24px;
            background-color: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(var(--accent-rgb), 0.4);
            border-radius: 7px;
            display: inline-block;
            position: relative;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            flex-shrink: 0;
            margin-top: 1px;
        }

        .checkbox-group:hover .checkmark {
            background-color: rgba(var(--accent-rgb), 0.1);
            border-color: var(--accent-lavender);
            transform: scale(1.05);
        }

        .checkbox-group input:checked ~ .checkmark {
            background-color: var(--accent-purple);
            border-color: var(--accent-purple);
            box-shadow: 0 0 15px rgba(var(--accent-rgb), 0.5);
            transform: scale(1.1);
        }

        .checkmark:after {
            content: "";
            position: absolute;
            display: none;
            left: 8px;
            top: 4px;
            width: 6px;
            height: 12px;
            border: solid white;
            border-width: 0 2.5px 2.5px 0;
            transform: rotate(45deg);
        }

        .checkbox-group input:checked ~ .checkmark:after {
            display: block;
        }

        .checkbox-label {
            font-size: 0.95rem;
            color: var(--text-white);
            line-height: 1.6;
            user-select: none;
            cursor: pointer;
            transition: color 0.3s;
        }

        .checkbox-group:hover .checkbox-label {
            color: var(--accent-lavender);
        }

        .checkbox-label a {
            color: var(--accent-lavender);
            text-decoration: underline;
            transition: color 0.3s;
            font-weight: 600;
        }

        .checkbox-label a:hover {
            color: white;
            text-shadow: 0 0 10px rgba(var(--accent-light-rgb), 0.5);
        }

        .checkbox-label strong {
            color: var(--text-white);
            display: block;
            margin-bottom: 3px;
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 2.5rem;
        }

        .summary-label {
            font-size: 1.2rem;
            color: var(--text-gray);
        }

        .summary-price {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
        }

        .summary-price span {
            font-size: 1.1rem;
            color: var(--text-gray);
            font-weight: 500;
        }

        .finalize-btn {
            width: 100%;
            background: linear-gradient(135deg, var(--accent-purple), var(--accent-lavender));
            color: white;
            padding: 1rem;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s;
            box-shadow: 0 10px 25px rgba(var(--accent-rgb), 0.3);
            text-align: center;
        }

        .finalize-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(var(--accent-rgb), 0.5);
            filter: brightness(1.1);
        }

        @keyframes modalSlideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .checkout-modal {
            animation: modalSlideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        /* DISCOUNT SECTION */
        .discount-section {
            margin-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 1rem;
        }

        .discount-checkbox-group {
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
        }
        
        .discount-checkbox-group input[type="checkbox"] {
            transform: scale(1.4);
            accent-color: var(--accent-purple);
            cursor: pointer;
        }

        .discount-checkbox-group label {
            font-size: 1.1rem;
            color: var(--accent-lavender);
            font-weight: 700;
            cursor: pointer;
            user-select: none;
            transition: all 0.3s;
            text-shadow: 0 0 10px rgba(var(--accent-light-rgb), 0.3);
        }

        .discount-checkbox-group:hover label {
            color: white;
            text-shadow: 0 0 15px rgba(var(--accent-light-rgb), 0.6);
        }

        .discount-label {
            color: var(--accent-lavender);
            font-weight: 700;
            margin-bottom: 0.6rem;
            display: block;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
        }

        .discount-input-container {
            display: flex;
            gap: 10px;
            margin-top: 0.5rem;
        }

        .apply-btn {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #888;
            padding: 0 1.5rem;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            white-space: nowrap;
        }

        .apply-btn:hover:not(:disabled) {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
            color: white;
        }

        .apply-btn.code-valid:not(.applied) {
            border-color: var(--accent-purple);
            color: white;
            background: rgba(var(--accent-rgb), 0.2);
            box-shadow: 0 0 15px rgba(var(--accent-rgb), 0.3);
        }

        .apply-btn.applied {
            background: var(--accent-purple) !important;
            border-color: var(--accent-purple) !important;
            color: white !important;
            box-shadow: 0 0 15px rgba(var(--accent-rgb), 0.4);
            cursor: default;
        }