@font-face {
    font-family: 'MiSans';
    src: url('https://assets-persist.lovart.ai/agent-static-assets/MiSans-Regular.ttf') format('truetype');
    font-weight: 400;
}
@font-face {
    font-family: 'MiSans';
    src: url('https://assets-persist.lovart.ai/agent-static-assets/MiSans-Bold.ttf') format('truetype');
    font-weight: 700;
}
@font-face {
    font-family: 'DelaGothicOne';
    src: url('https://assets-persist.lovart.ai/agent-static-assets/DelaGothicOne-Regular.ttf') format('truetype');
}

:root {
    --primary-blue: #3b82f6;
    --accent-purple: #8b5cf6;
    --accent-gold: #fbbf24;
    --dark-bg: #0f172a;
    --card-bg: rgba(15, 23, 42, 0.6);
    --text-light: #f8fafc;
    --text-dim: #94a3b8;
}

body {
    width: 100%;
    margin: 0;
    background-color: #020617;
    color: var(--text-light);
    font-family: 'MiSans', sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
.site2-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
}

.site2-header .logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
}

.site2-header nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site2-header nav a {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    transition: color 0.3s, text-shadow 0.3s;
}

.site2-header nav a:hover {
    color: var(--theme-color);
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.8);
}

.site2-header .account-btn {
    padding: 10px 30px;
    background: linear-gradient(135deg, var(--theme-color), var(--theme-color));
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(15, 23, 42, 0.9);
    cursor: pointer;
    padding: 10px;
    box-sizing: border-box;
}

.nav-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 3px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.site2-header .account-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
}

/* Dropdowns Nav */
.site2-header nav ul li {
    position: relative;
}

.site2-header nav ul li.has-dropdown > a {
    display: flex;
    align-items: center;

}

.site2-header nav ul li .dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.site2-header nav ul li .dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid rgba(59, 130, 246, 0.3);
}

.site2-header nav ul li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
}

.site2-header nav ul li .dropdown li {
    list-style: none;
}

.site2-header nav ul li .dropdown li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text-dim);
    transition: all 0.2s;
    white-space: nowrap;
}

.site2-header nav ul li .dropdown li a:hover {
    color: var(--theme-color);
    background: rgba(59, 130, 246, 0.1);
    padding-left: 25px;
}

@media (max-width: 1200px) {
    .site2-nav {
        width: 100%;
    }
    .site2-nav ul {
        display: none !important;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 12px 0 6px;
        width: 100%;
        background: rgba(2, 6, 23, 0.9);
        border-radius: 12px;
        border: 1px solid rgba(255,255,255,0.08);
    }
    .site2-nav ul.nav-open {
        display: flex !important;
    }
}

/* Account Dropdown */
.account-dropdown {
    position: relative;
}

.account-dropdown .account-btn {
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.account-dropdown .dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 180px;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    z-index: 1001;
    list-style: none;
}

.account-dropdown .dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    right: 20px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid rgba(59, 130, 246, 0.3);
}

.account-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
}

.account-dropdown .dropdown li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dim);
    transition: all 0.2s;
}

.account-dropdown .dropdown li a:hover {
    color: var(--theme-color);
    background: rgba(59, 130, 246, 0.1);
}

.account-dropdown .dropdown li a i {
    font-size: 18px;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    min-height: 700px;
    background-image: url('../img/bg-footer.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(2,6,23,0.3), rgba(2,6,23,0.9));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 8px;
    color: var(--theme-color);
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
    animation: fadeInDown 1s ease-out;
}

.hero-title {
    font-family: 'DelaGothicOne', sans-serif;
    font-size: clamp(52px, 7vw, 120px);
    line-height: 1.1;
    background: linear-gradient(180deg, #ffffff 0%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.6));
    margin-bottom: 40px;
    text-transform: uppercase;
    animation: zoomIn 1.2s ease-out;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 60px;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    color: white; 
    background: linear-gradient(90deg, var(--theme-color), var(--theme-color));
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.4);
    letter-spacing: 2px;
    gap: 15px;
}

.hero-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(124, 58, 237, 0.6);
    background: linear-gradient(90deg, #1c536b, var(--theme-color));
    color: white;
}

/* Features Section */
.features {
    position: relative;
    width: 100%;
    padding: 100px 20px;
    background: #020617;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    z-index: 20;
    margin-top: -100px;
    box-sizing: border-box;
}

.card {
    position: relative;
    width: min(100%, 360px);
    min-height: 480px;
    background: radial-gradient(circle at center, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.95));
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.card:hover {
    transform: translateY(-20px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 30px 60px rgba(59, 130, 246, 0.2);
}

.card-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.card img {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.card:nth-child(1) img {
    width: 100%;
    transform: translateY(-50px);
}
.card:nth-child(2) img {
    width: 100%;
    transform: translateY(-30px) scale(1.1);
}
.card:nth-child(3) img {
    width: 90%;
    transform: translateY(-20px);
}

.card:hover img {
    transform: scale(1.1) translateY(-60px);
}

.card-content {
    position: relative;
    z-index: 2;
    text-align: center;
    background: linear-gradient(to top, #020617 20%, transparent);
    width: 100%;
    padding: 40px 20px 20px;
}

.card-title {
    font-family: 'DelaGothicOne', sans-serif;
    font-size: 32px;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-shadow: 0 4px 8px rgba(0,0,0,0.8);
}

.card-subtitle {
    font-size: 16px;
    color: var(--text-dim);
    letter-spacing: 1px;
}

/* Community Section */
.community {
    position: relative;
    width: 100%;
    padding: 100px 0;
    background: linear-gradient(180deg, #020617 0%, #0f172a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-family: 'DelaGothicOne', sans-serif;
    font-size: clamp(32px, 6vw, 48px);
    margin-bottom: 10px;
    color: white;
}

.section-subtitle {
    font-size: 20px;
    color: var(--theme-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

.discord-widget {
    width: min(1000px, 90vw);
    min-height: 260px;
    background: #5865F2;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(88, 101, 242, 0.3);
}

.discord-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/bg-footer.jpg');
    opacity: 0.1;
    background-size: cover;
}

.discord-info {
    position: relative;
    z-index: 2;
    text-align: left;
}

.discord-info h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    color: white;
}

.discord-info p {
    font-size: 18px;
    opacity: 0.9;
    color: white;
}

.discord-btn {
    position: relative;
    z-index: 2;
    background: white;
    color: #5865F2;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s;
}

.discord-btn:hover {
    transform: scale(1.05);
    color: #5865F2;
}

/* Stats Section */
.stats {
    width: 100%;
    padding: 80px 0;
    background: #020617;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    max-width: 1400px;
    margin: 0 auto;
    gap: 24px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s;
}

.stat-item:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 40px;
    color: var(--theme-color);
    margin-bottom: 15px;
}

.stat-number {
    font-family: 'DelaGothicOne', sans-serif;
    font-size: 48px;
    background: linear-gradient(90deg, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
    padding: 25px 0 ;
}

.stat-label {
    font-size: 16px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

/* Footer */
.site2-footer {
    position: relative;
    width: 100%;
    min-height: 480px;
    background-image: url('../img/bg-footer.jpg');
    background-size: cover;
    background-position: center bottom;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    color: white;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-sizing: border-box;
}

.site2-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #020617 0%, rgba(2,6,23,0.8) 20%, rgba(2,6,23,0.4) 100%);
}

.footer-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    text-align: center;
}

.footer-logo img {
    height: 80px;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 26px;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav a {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--accent-gold);
}

.social-icons {
    display: flex;
    gap: 16px;
    margin: 10px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s;
    color: white;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-icons a:hover {
    background: var(--theme-color);
    transform: translateY(-3px);
    border-color: var(--theme-color);
}

.footer-text {
    text-align: center;
    margin-top: 20px;
}

@media (max-width: 1200px) {
    .site2-header {
        padding: 10px 20px;
        flex-wrap: wrap;
        gap: 12px;
    }
    .site2-header nav ul {
        justify-content: center;
    }
    .nav-toggle {
        display: flex;
    }
    .site2-header nav ul li .dropdown {
        position: static;
        transform: none;
        opacity: 0;
        visibility: hidden;
        margin-top: 8px;
        box-shadow: none;
        border: 1px solid rgba(255,255,255,0.05);
        background: rgba(2, 6, 23, 0.9);
        display: none;
    }
    .site2-header nav ul li.has-dropdown.mobile-open .dropdown {
        display: block;
        opacity: 1;
        visibility: visible;
        position: relative;
        left: auto;
        transform: none;
    }
    .site2-header.nav-open .site2-nav ul li.has-dropdown.mobile-open .dropdown {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    .site2-header nav ul li .dropdown::before {
        display: none;
    }
    .site2-nav ul {
        width: 100%;
        display: none !important;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 12px 0 6px;
    }
    .site2-nav ul.nav-open {
        display: flex !important;
    }
    .account-dropdown {
        order: 3;
        width: 100%;
        display: none;
        justify-content: center;
        align-items: center;
    }
    .account-dropdown .dropdown {
        position: relative;
        right: auto;
        top: auto;
        min-width: 0;
        width: calc(100% - 40px);
        max-width: 360px;
        opacity: 0;
        visibility: hidden;
        margin-top: 8px;
        box-shadow: none;
        background: rgba(15, 23, 42, 0.9);
        border: 1px solid rgba(255,255,255,0.08);
        display: none;
    }
    .site2-header.nav-open .account-dropdown {
        display: flex;
    }
    .site2-header.nav-open .account-dropdown.dropdown-open .dropdown,
    .site2-header.nav-open .account-dropdown:focus-within .dropdown {
        display: block;
        opacity: 1;
        visibility: visible;
    }
    .pack-page {
        padding-top: 140px;
    }
}

@media (max-width: 768px) {
    .site2-header {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .site2-header nav ul {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }
    .hero {
        padding-top: 140px;
    }
    .pack-hero h1 {
        font-size: 40px;
    }
    .pack-hero {
        gap: 24px;
    }
    .pack-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        padding: 0 10px;
    }
    .hero-title {
        font-size: clamp(38px, 9vw, 64px);
        line-height: 1.05;
    }
    .hero-subtitle {
        font-size: 16px;
        letter-spacing: 4px;
    }
    .hero-cta {
        width: 100%;
        justify-content: center;
    }
    .discord-widget {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        width: 100%;
        min-height: auto;
    }
    .discord-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

.footer-copyright {
    font-size: 14px;
    color: var(--text-dim);
    margin-bottom: 10px;
}

.footer-url {
    font-family: 'DelaGothicOne', sans-serif;
    font-size: 24px;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(251, 191, 36, 0.3);
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.pack-page {
    padding: 160px 6vw 120px;
    min-height: calc(100vh - 90px);
    background: radial-gradient(circle at top, rgba(59, 130, 246, 0.15), transparent 45%), #020617;
}

.pack-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(14, 165, 233, 0.2));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 32px;
    padding: clamp(28px, 4vw, 60px);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(2, 6, 23, 0.8);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.pack-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(135deg, rgba(248, 250, 252, 0.15), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.pack-hero-content {
    position: relative;
    z-index: 1;
}

.pack-hero h1 {
    font-size: 62px;
    margin-bottom: 14px;
    font-family: 'DelaGothicOne', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.pack-subtitle {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    font-size: 16px;
    color: var(--theme-color);
    margin-bottom: 12px;
}

.pack-hero .pack-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dim);
    max-width: 680px;
}

.pack-hero-illustration {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pack-hero-illustration img {
    width: 100%;
    max-width: 420px;
    border-radius: 28px;
    filter: drop-shadow(0 25px 65px rgba(15, 23, 42, 0.8));
}

.pack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: clamp(16px, 2vw, 26px);
}

.pack-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.75);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.pack-input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(15, 23, 42, 0.8);
    color: var(--text-light);
    font-size: 15px;
    box-sizing: border-box;
    outline: none;
}

.pack-input::placeholder {
    color: var(--text-dim);
}

.pack-action-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

.pack-card.featured {
    border-color: rgba(251, 191, 36, 0.6);
    box-shadow: 0 28px 55px rgba(251, 191, 36, 0.25);
}

.pack-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.08), transparent 40%);
    pointer-events: none;
}

.pack-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.pack-card h2 {
    margin: 0;
    font-size: 26px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pack-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-gold);
}

.pack-copy {
    color: var(--text-dim);
    line-height: 1.6;
    margin: 0;
    min-height: 72px;
}

.pack-perks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pack-perks li {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 12px;
    align-items: center;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 10px 12px;
}

.pack-perks img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 12px;
    background: rgba(2, 6, 23, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pack-btn {
    padding: 18px 26px;
    border-radius: 999px;
    background: linear-gradient(120deg, #f97316, #facc15, #f97316);
    color: #0f172a;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 20px 35px rgba(249, 115, 22, 0.45);
    align-self: center;
    margin-top: auto;
}

.pack-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 45px rgba(249, 115, 22, 0.4);
}

.pack-footer {
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.pack-footer-text {
    flex: 1;
    max-width: 900px;
    font-size: 18px;
    color: var(--text-dim);
    line-height: 1.7;
}

.pack-item {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(2, 6, 23, 0.7);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pack-item img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    align-self: center;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(15, 23, 42, 0.8);
    padding: 10px;
    box-shadow: inset 0 0 20px rgba(255,255,255,0.05);
}

.pack-item h3 {
    font-size: 22px;
    margin: 0;
    color: white;
}

.pack-item p {
    font-size: 16px;
    color: var(--text-dim);
    line-height: 1.6;
    margin: 0;
}

.pack-footer {
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.pack-footer-text {
    flex: 1;
    max-width: 900px;
    font-size: 18px;
    color: var(--text-dim);
    line-height: 1.7;
}

.pack-btn {
    padding: 22px 60px;
    border-radius: 999px;
    background: linear-gradient(120deg, #f97316, #facc15, #f97316);
    color: #0f172a;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 20px 35px rgba(249, 115, 22, 0.5);
}

.pack-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 45px rgba(249, 115, 22, 0.4);
}
