:root {
    --primary-color: #8a2be2; /* Purple */
    --primary-dark: #4b0082;
    --bg-color: #111;
    --text-color: #fff;
    --text-muted: #ccc;
    --card-bg: rgba(0, 0, 0, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    background-image: url('fundo.svg'); /* Topographic background */
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-center {
    display: flex;
    gap: 30px;
}

.nav-center a {
    color: var(--text-color);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-center a.active-link {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 4px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-center a:hover {
    color: var(--primary-color);
}

.btn-discord-nav {
    background-color: #5865F2;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}

.btn-discord-nav:hover {
    background-color: #4752C4;
}

/* Sections */
section {
    min-height: 100vh;
    padding: 100px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Hero Section */
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.btn-hero {
    padding: 15px 40px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    transition: all 0.3s;
    background: transparent;
}

.btn-hero:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-image img {
    max-height: ;
    filter: drop-shadow(0 0 20px rgba(138, 43, 226, 0.3));
}

.steps-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    right: -300px;
}

.steps-image img {
    max-height: 90vh;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(138, 43, 226, 0.3));
    transform: translateY(50px); /* Push down slightly to look "cut off" if needed */
}

/* Steps Section */
.steps-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
}

.steps-content {
    flex: 1;
}

.steps-title {
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 40px;
    line-height: 1.2;
}

.step-item {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.step-number {
    background-color: rgba(138, 43, 226, 0.2);
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-text p {
    margin-bottom: 10px;
    color: var(--text-muted);
}

.btn-step {
    background-color: rgba(138, 43, 226, 0.2);
    color: var(--primary-color);
    padding: 8px 20px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    transition: 0.3s;
}

.btn-step:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Updates Section */
.updates-section {
    flex-direction: column;
    align-items: flex-start;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 30px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 30px auto;
}

.updates-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.update-card {
    background-color: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.3);
    padding: 40px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: 0.3s;
}

.update-card:hover {
    background-color: rgba(138, 43, 226, 0.2);
    transform: translateY(-5px);
}

.update-card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.update-card p {
    color: var(--text-muted);
}

/* Contact Section */
.contact-container {
    background-color: rgba(20, 20, 20, 0.9);
    padding: 40px;
    border-radius: 10px;
    width: 100%;
    max-width: 600px;
    border: 1px solid #333;
}

.contact-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-title i {
    color: var(--primary-color);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: #222;
    border: 1px solid #444;
    color: white;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
}

.btn-submit:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Dashboard & General Styles */
.container {
    max-width: 1200px;
    margin: 100px auto 50px;
    padding: 0 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.card {
    background-color: var(--card-bg);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.card h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid var(--primary-color);
}

.profile-actions {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.profile-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    object-fit: cover;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid #444;
    border-radius: 5px;
    color: white;
}

.form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid #444;
    border-radius: 5px;
    color: white;
    resize: vertical;
}

.form-group input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    text-align: center;
}

.btn:hover {
    background-color: var(--primary-dark);
}

.nav-store-btn {
    border: 1px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
}

.nav-store-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.status-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.status-active {
    background-color: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    border: 1px solid #2ecc71;
}

.status-inactive {
    background-color: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    border: 1px solid #e74c3c;
}

/* Navbar User Profile */
.nav-user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 30px;
    transition: 0.3s;
}

.nav-user-profile:hover {
    background: rgba(138, 43, 226, 0.3);
}

.nav-user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    object-fit: cover;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #000;
    color: #555;
}

/* Store Section */
.store-section {
    background: radial-gradient(circle at center, rgba(0, 100, 0, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
}

.store-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1400px;
}

.vip-card {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #00bfff; /* Default Blue for Diamond */
    border-radius: 5px;
    width: 300px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(5px);
}

.vip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0, 191, 255, 0.2);
}

.vip-header {
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.vip-header i {
    font-size: 2.5rem;
    color: #00bfff;
    margin-bottom: 15px;
}

.vip-header h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.vip-header p {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
}

.vip-body {
    width: 100%;
    margin-bottom: 30px;
}

.vip-body ul {
    list-style: none;
    padding: 0;
}

.vip-body ul li {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    text-align: left;
}

.vip-body ul li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #ffd700; /* Gold dot */
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 5px #ffd700;
}

.vip-footer {
    width: 100%;
}

.btn-vip {
    width: 100%;
    padding: 12px;
    background: rgba(0, 191, 255, 0.1);
    border: 1px solid #00bfff;
    color: #00bfff;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
    display: block;
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-vip:hover {
    background: #00bfff;
    color: #000;
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.5);
}

/* Skins Grid */
.skins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.skin-item {
    background-color: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 10px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.2s, border-color 0.2s;
    width: 100%;
    min-height: 220px;
    overflow: hidden;
}

.skin-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    background-color: rgba(138, 43, 226, 0.1);
}

.skin-thumb {
    width: 100%;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 6px;
}

.skin-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.2));
    transform: scale(1.02);
    transition: transform 0.2s ease;
}

.skin-item img {
    max-width: 100%;
    height: auto;
}

.skin-item:hover .skin-thumb img {
    transform: scale(1.08);
}

.skin-item h3 {
    font-size: 0.78rem;
    margin-bottom: 4px;
    color: #eee;
    text-align: center;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-small {
    padding: 4px 8px;
    font-size: 0.7rem;
    width: 100%;
    margin-top: auto;
    background-color: rgba(138, 43, 226, 0.3);
    border: 1px solid var(--primary-color);
}

.btn-small:hover {
    background-color: var(--primary-color);
}

.btn-block {
    width: 100%;
    display: block;
    text-align: center;
    margin-top: 12px;
}

.btn-outline {
    border: 1px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.2s;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.wallet-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.wallet-subtitle {
    color: #b3b3b3;
    font-size: 0.9rem;
}

.wallet-balance {
    text-align: right;
}

.wallet-balance span {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
}

.wallet-balance small {
    display: block;
    color: #b3b3b3;
    margin-bottom: 8px;
}

.store-card code {
    background: rgba(255, 255, 255, 0.06);
    padding: 2px 6px;
    border-radius: 4px;
}

.crate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.crate-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 360px;
    transition: transform 0.2s, border-color 0.2s;
}

.crate-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.crate-card-disabled {
    opacity: 0.65;
}

.crate-thumb {
    width: 100%;
    height: 140px;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.crate-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.crate-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.crate-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.crate-preview-btn {
    width: 100%;
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}

.crate-preview-btn:hover {
    border-color: var(--primary-color);
    background: rgba(138, 43, 226, 0.15);
    color: #fff;
}

.crate-description {
    color: #b3b3b3;
    font-size: 0.9rem;
    min-height: 42px;
}

.crate-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.crate-price strong {
    font-size: 1.3rem;
}

.crate-price span {
    color: #b3b3b3;
}

.reward-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.reward-chip {
    background: rgba(138, 43, 226, 0.15);
    border: 1px solid rgba(138, 43, 226, 0.4);
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 0.75rem;
    color: #fff;
}

.reward-more {
    background: rgba(255, 255, 255, 0.1);
}

.crate-warning {
    color: #f1c40f;
    font-size: 0.8rem;
    margin-top: 6px;
}

.crate-history {
    list-style: none;
    padding: 0;
    margin: 0;
}

.crate-history li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.crate-history li:last-child {
    border-bottom: none;
}

.crate-history small {
    color: #b3b3b3;
    font-size: 0.75rem;
}

.history-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-right: 10px;
}

.crate-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    z-index: 4000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.crate-overlay.show {
    display: flex;
}

.crate-overlay-content {
    width: min(900px, 100%);
    background: rgba(20, 20, 28, 0.95);
    border: 1px solid rgba(138, 43, 226, 0.4);
    border-radius: 18px;
    padding: 30px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    animation: pop 0.3s ease;
}

.crate-overlay .close-overlay {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    font-size: 1.8rem;
    color: #aaa;
    cursor: pointer;
}

.crate-overlay .close-overlay:hover {
    color: #fff;
}

.crate-reel-wrapper {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.4);
    margin: 20px 0;
    padding: 25px 0;
}

.crate-reel {
    display: flex;
    gap: 12px;
    transition: transform 4s cubic-bezier(0.17, 0.84, 0.44, 1);
}

.crate-slot {
    width: 150px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    padding: 12px;
}

.crate-slot img {
    width: 100%;
    height: 90px;
    object-fit: contain;
    margin-bottom: 8px;
}

.crate-pointer {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
    box-shadow: 0 0 12px var(--primary-color);
}

.crate-result {
    display: flex;
    align-items: center;
    gap: 16px;
}

.crate-result img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.crate-overlay-actions {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.crate-overlay-status {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* Transfer Modal */
.transfer-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.transfer-modal.show {
    display: flex;
}

.transfer-modal-content {
    width: 100%;
    max-width: 360px;
    background: rgba(15, 15, 20, 0.95);
    border: 1px solid rgba(138, 43, 226, 0.35);
    border-radius: 16px;
    padding: 25px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    animation: pop 0.25s ease;
}

/* Crate Preview Modal */
.crate-preview-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 3800;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.crate-preview-modal.show {
    display: flex;
}

.crate-preview-modal-content {
    width: min(1000px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    background: rgba(14, 14, 20, 0.96);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
    animation: pop 0.25s ease;
}

.crate-preview-meta {
    color: #b3b3b3;
    font-size: 0.9rem;
}

.crate-preview-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}

.crate-preview-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.crate-preview-item img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.crate-preview-item strong {
    font-size: 0.95rem;
}

.crate-preview-item small {
    color: #b5b5b5;
    font-size: 0.75rem;
}

.close-modal {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    color: #aaa;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

.close-modal:hover {
    color: #fff;
}

/* VIP Store */
.vip-store-hero {
    min-height: auto;
    padding: 150px 50px 90px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(10, 10, 25, 0.9)), url('fundo.svg') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.vip-store-hero-content {
    max-width: 720px;
}

.vip-store-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-description {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.vip-store-hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.vip-store-section {
    min-height: auto;
    padding: 90px 50px;
    display: block;
}

.section-label {
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 0.8rem;
    color: var(--primary-color);
    display: inline-block;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.3rem;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-muted);
    max-width: 700px;
}

.vip-store-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.vip-package-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 3px solid var(--accent-color, var(--primary-color));
    border-radius: 18px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    backdrop-filter: blur(8px);
}

.vip-package-card header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.package-label {
    font-size: 0.85rem;
    color: var(--accent-color, var(--primary-color));
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.package-label i {
    margin-right: 6px;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color, var(--primary-color));
}

.package-perks {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.package-perks li {
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.package-perks i {
    color: var(--accent-color, var(--primary-color));
    margin-top: 3px;
}

.package-actions {
    margin-top: auto;
}

.package-actions small {
    display: block;
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.empty-state {
    text-align: center;
    color: var(--text-muted);
    margin-top: 40px;
}

.vip-showroom .showroom-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.showroom-segment {
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.showroom-header h3 {
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.showroom-header p {
    color: var(--text-muted);
}

.vehicle-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vehicle-card {
    display: flex;
    gap: 18px;
    background: rgba(15, 15, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 16px;
    align-items: center;
}

.vehicle-card img {
    width: 120px;
    height: 80px;
    object-fit: contain;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.vehicle-content h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.vehicle-tag {
    font-size: 0.75rem;
    margin-left: 8px;
    padding: 2px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--primary-color);
}

.vehicle-stats {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.vehicle-stats strong {
    color: #fff;
}

.vip-perks .perk-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.perk-card {
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    text-align: left;
}

.perk-card i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.perk-card h3 {
    margin-bottom: 8px;
}

@keyframes pop {
    from {
        transform: translateY(10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-container, .steps-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content, .steps-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-image img {
        max-height: 50vh;
    }

    .nav-center {
        display: none; /* Simple hide for mobile for now */
    }
    
    .updates-grid {
        grid-template-columns: 1fr;
    }
}
