/* ===== WojakClient - Pixel-Perfect Malevolence Clone (White Accent) ===== */

:root {
    --dark-gray: rgb(35, 35, 35);
    --light-gray: rgb(235, 235, 235);
    --accent: rgb(255, 255, 255);
    --accent-hover: rgb(200, 200, 200);
    --accent-dark: rgb(180, 180, 180);
    --white: #ffffff;
    --black: #000000;
    --dark-overlay: rgba(35, 35, 35, 0.8);
    --light-overlay: rgba(235, 235, 235, 0.1);
    --success-green: #28a745;
    --warning-orange: #ffc107;
    --lightning-blue: #0066ff;
    --danger-red: #dc3545;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(35, 35, 35, .8);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
    transition: background .3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}

::-webkit-scrollbar-corner {
    background: rgba(35, 35, 35, .8);
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--accent) rgba(35, 35, 35, 0.8);
}

body {
    font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--dark-gray);
    color: var(--light-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(35, 35, 35, .85) 0, rgba(35, 35, 35, .75) 50%, rgba(35, 35, 35, .9) 100%);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(35, 35, 35, .95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all .3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-logo {
    height: 55px;
    width: auto;
    display: block;
    filter: brightness(1.1);
    transition: all .3s ease;
}

.nav-logo:hover {
    filter: brightness(1.3);
    transform: scale(1.05);
}

/* Vouch Author Styles */
.vouch-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vouch-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, .2);
}

.vouch-avatar-icon {
    font-size: 1.4rem;
    color: var(--accent);
}

.vouch-name {
    font-weight: 600;
    color: var(--accent);
    font-size: .9rem;
}

/* Announcement Update Badge */
.announcement-update-badge {
    background: rgba(0, 200, 83, .2);
    color: var(--success-green);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    border: 1px solid rgba(0, 200, 83, .3);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.login-btn {
    background: 0 0;
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: .5rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.login-btn:hover {
    background: var(--accent);
    color: var(--dark-gray);
    transform: translateY(-2px);
}

.login-btn.logged-in {
    background: var(--accent);
    color: var(--dark-gray);
    border-color: var(--accent);
}

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.3rem;
    color: var(--light-gray);
    transition: all .3s ease;
}

.cart-icon:hover {
    color: var(--accent);
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent);
    color: var(--dark-gray);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-logo-container {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-logo {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 5px 15px rgba(255, 255, 255, 0.1));
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--light-gray);
    margin-bottom: 3rem;
    font-weight: 300;
    animation: fadeInUp 1s ease .2s both;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease .4s both;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
}

.feature i {
    font-size: 2rem;
    color: var(--accent);
}

.feature span {
    font-size: .9rem;
    font-weight: 500;
    color: var(--light-gray);
}

.support-link {
    font-size: .9rem;
    font-weight: 500;
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-underline-offset: 3px;
    cursor: pointer;
    transition: all .3s ease;
    display: inline-block;
}

.support-link:hover {
    color: var(--accent-hover);
    text-decoration-color: var(--accent-hover);
    transform: translateY(-2px);
}

.cta-btn {
    background: var(--accent);
    color: var(--dark-gray);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    gap: .5rem;
    margin: 0 auto;
    animation: fadeInUp 1s ease .6s both;
    position: relative;
}

.cta-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, .15);
}

/* Products Section */
.products-section {
    background: var(--dark-gray);
    padding: 5rem 0;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--light-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Announcements */
.announcements-section {
    padding: 60px 0;
    background: rgba(35, 35, 35, .9);
}

.announcements-container {
    max-width: 800px;
    margin: 0 auto;
}

.loading-announcements {
    text-align: center;
    padding: 40px 20px;
    color: var(--light-gray);
}

.loading-announcements i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.loading-announcements p {
    font-size: 1.1rem;
    opacity: .8;
}

.announcement-card {
    background: rgba(35, 35, 35, .8);
    border: 1px solid rgba(235, 235, 235, .1);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    transition: all .3s ease;
    backdrop-filter: blur(10px);
}

.announcement-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, .3);
    border-color: rgba(255, 255, 255, .3);
}

.announcement-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 16px;
}

.announcement-target {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--dark-gray);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: .85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    flex-shrink: 0;
}

.announcement-date {
    color: var(--light-gray);
    opacity: .7;
    font-size: .9rem;
    font-weight: 500;
}

.announcement-content {
    color: var(--light-gray);
    line-height: 1.6;
}

.announcement-content h1,
.announcement-content h2,
.announcement-content h3,
.announcement-content h4,
.announcement-content h5,
.announcement-content h6 {
    color: var(--light-gray);
    margin: 16px 0 8px;
    font-weight: 600;
}

.announcement-content h1:first-child,
.announcement-content h2:first-child,
.announcement-content h3:first-child {
    margin-top: 0;
}

.announcement-content p {
    margin: 8px 0;
}

.announcement-content ol,
.announcement-content ul {
    margin: 8px 0;
    padding-left: 20px;
}

.announcement-content li {
    margin: 4px 0;
}

.announcement-content b,
.announcement-content strong {
    color: var(--accent);
    font-weight: 600;
}

.announcement-content a {
    color: var(--accent);
    text-decoration: none;
    transition: color .3s ease;
}

.announcement-content a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

.announcement-content code {
    background: rgba(255, 255, 255, .1);
    color: var(--accent);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: .9em;
}

.announcement-content pre {
    background: rgba(35, 35, 35, .8);
    border: 1px solid rgba(235, 235, 235, .1);
    border-radius: 8px;
    padding: 16px;
    overflow-x: auto;
    margin: 16px 0;
}

.announcement-content pre code {
    background: 0 0;
    padding: 0;
    color: var(--light-gray);
}

.no-announcements {
    text-align: center;
    padding: 40px 20px;
    color: var(--light-gray);
    opacity: .7;
}

.no-announcements i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.announcements-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.announcements-container {
    max-height: 400px;
    overflow: auto;
    transition: none;
    scrollbar-width: thin;
}

.announcements-overlay {
    display: none;
}

.view-more-btn {
    display: none;
}

/* Product Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 400px));
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: rgba(235, 235, 235, .08);
    border: 1px solid rgba(235, 235, 235, .15);
    border-radius: 20px;
    overflow: hidden;
    transition: all .4s cubic-bezier(.175, .885, .32, 1.275);
    backdrop-filter: blur(15px);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--accent);
    box-shadow: 0 30px 60px rgba(255, 255, 255, .1);
    backdrop-filter: blur(20px);
}

.product-image {
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .05));
    color: var(--accent);
    font-size: 3rem;
    border-radius: 8px;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, .1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform .6s ease;
}

.product-card:hover .product-image::before {
    transform: translateX(100%);
}

.product-info {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.product-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .3);
}

.product-description {
    color: var(--light-gray);
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 1rem;
}

.product-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent) !important;
    margin-bottom: 0;
    text-shadow: 0 3px 6px rgba(255, 255, 255, .2) !important;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.product-status {
    margin-bottom: 0;
}

.product-status .status-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    border-radius: 20px;
    font-size: .9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(40, 167, 69, .2);
    color: var(--success-green);
    border-color: rgba(40, 167, 69, .3);
}

.status-badge.active,
.status-badge.status-available {
    background: rgba(0, 200, 83, .2);
    color: var(--success-green);
    border: 1px solid rgba(0, 200, 83, .3);
}

.status-badge.status-maintenance {
    background: rgba(0, 102, 255, .2);
    color: var(--lightning-blue);
    border: 1px solid rgba(0, 102, 255, .3);
}

.status-badge.status-unavailable {
    background: rgba(213, 96, 0, .2);
    color: var(--danger-red);
    border: 1px solid rgba(213, 96, 0, .3);
}

.status-badge.status-risky {
    background: rgba(235, 232, 64, .2);
    color: var(--warning-orange);
    border: 1px solid rgba(235, 232, 64, .3);
}

.status-badge.status-unknown {
    background: rgba(235, 235, 235, .2);
    color: var(--light-gray);
    border: 1px solid rgba(235, 235, 235, .3);
}

.add-to-cart-btn {
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(235, 235, 235, .05), rgba(235, 235, 235, .1)) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--white) !important;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.05) !important;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-top: auto;
}

.add-to-cart-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .1), transparent);
    transition: left .5s ease;
}

.add-to-cart-btn:hover::before {
    left: 100%;
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, .3));
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 255, 255, .1);
}

/* Why Choose Us / Our Promises */
.why-choose-us {
    background: linear-gradient(135deg, rgba(35, 35, 35, .9), rgba(35, 35, 35, .7));
    padding: 5rem 0;
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(235, 235, 235, .05);
    border: 1px solid rgba(235, 235, 235, .1);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all .3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 15px 30px rgba(255, 255, 255, .05);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--dark-gray);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--light-gray);
    line-height: 1.6;
}

/* Product Detail Page */
.product-page {
    min-height: 100vh;
    padding-top: 100px;
    position: relative;
    z-index: 2;
}

.product-detail-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.product-header-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: start;
}

.product-image-section {
    position: sticky;
    top: 120px;
}

.product-image-large {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 8rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
}

.product-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.product-image-large .image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .05));
    color: var(--accent);
    font-size: 6rem;
    border-radius: 20px;
}

.product-image-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, .1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform .6s ease;
}

.product-image-large:hover::before {
    transform: translateX(100%);
}

.product-media-showcase {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-thumbnails {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.product-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.product-thumbnails::-webkit-scrollbar-track {
    background: transparent;
}

.product-thumbnails::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.thumbnail {
    width: 80px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0.6;
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    font-size: 1.2rem;
    z-index: 1;
}

.product-info-section h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-description-large {
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.product-description-large h4 {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.product-description-large h4 i {
    color: var(--accent);
    font-size: 1.2rem;
}

.description-notes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.description-note-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: .75rem 0;
    border-bottom: 1px solid rgba(235, 235, 235, .1);
    transition: all .3s ease;
}

.description-note-item:last-child {
    border-bottom: none;
}

.description-note-item:hover {
    background: rgba(235, 235, 235, .05);
    padding-left: .5rem;
    border-radius: 6px;
}

.description-note-item i {
    color: #ffc107;
    font-size: .9rem;
    margin-top: .2rem;
    flex-shrink: 0;
}

.description-note-item i.fa-check-circle {
    color: #28a745;
}

.description-note-item span {
    color: var(--light-gray);
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
}

.product-navigation-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.5rem;
    background: rgba(235, 235, 235, .1);
    border: 1px solid rgba(235, 235, 235, .2);
    border-radius: 8px;
    color: var(--white);
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease;
    text-decoration: none;
}

.nav-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--dark-gray);
    transform: translateY(-2px);
}

/* Features Section on Product Page */
.product-features-section {
    margin-bottom: 4rem;
}

.product-features-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.features-categories {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-category {
    background: rgba(235, 235, 235, .03);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(235, 235, 235, .1);
}

.category-title {
    color: var(--accent);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.category-title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--accent);
    margin-right: 1rem;
    border-radius: 2px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1rem;
    background: rgba(235, 235, 235, .05);
    border: 1px solid rgba(235, 235, 235, .1);
    border-radius: 8px;
    transition: all .3s ease;
}

.feature-item:hover {
    border-color: var(--accent);
    background: rgba(235, 235, 235, .08);
}

.feature-item i {
    color: var(--success-green);
    font-size: 1.2rem;
}

.feature-item span {
    color: var(--white);
    font-weight: 500;
}

.feature-category-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: .75rem 1.5rem;
    background: rgba(235, 235, 235, .05);
    border: 1px solid rgba(235, 235, 235, .1);
    border-radius: 8px;
    color: var(--light-gray);
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease;
    font-size: .9rem;
}

.category-btn:hover {
    background: rgba(235, 235, 235, .08);
    border-color: var(--accent);
    color: var(--white);
}

.category-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--dark-gray);
}

.features-categories .feature-category {
    display: none;
}

.features-categories .feature-category.active {
    display: block;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .5rem 0;
    color: var(--white);
    font-weight: 500;
    border-bottom: 1px solid rgba(235, 235, 235, .05);
    transition: all .3s ease;
}

.feature-list-item:last-child {
    border-bottom: none;
}

.feature-list-item:hover {
    color: var(--accent);
    padding-left: .5rem;
}

.feature-list-item i {
    color: var(--success-green);
    min-width: 20px;
}

/* Purchase Section */
.purchase-options-section {
    margin-bottom: 4rem;
}

.purchase-options-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.purchase-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.purchase-option-card {
    background: rgba(235, 235, 235, .03);
    border: 1px solid rgba(235, 235, 235, .1);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

.purchase-option-card:hover {
    background: rgba(235, 235, 235, .05);
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
}

.option-header {
    margin-bottom: 2rem;
    width: 100%;
}

.option-header h4 {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.option-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    text-shadow: 0 2px 10px rgba(255, 255, 255, .1);
}

.purchase-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(235, 235, 235, .05), rgba(235, 235, 235, .1));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}

.purchase-btn:hover {
    background: var(--white);
    color: var(--dark-gray);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, .15);
}

.purchase-btn i {
    font-size: 1.1rem;
}

/* Purchase Options */
.purchase-options-section {
    background: rgba(235, 235, 235, .05);
    border: 1px solid rgba(235, 235, 235, .1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.purchase-options-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}

.purchase-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.purchase-option-card {
    background: rgba(235, 235, 235, .05);
    border: 1px solid rgba(235, 235, 235, .1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

.purchase-option-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 15px 30px rgba(255, 255, 255, .05);
}

.purchase-option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, .02) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform .6s ease;
}

.purchase-option-card:hover::before {
    transform: translateX(100%);
}

.option-header {
    margin-bottom: 1.5rem;
}

.option-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .5rem;
}

.option-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 1rem;
    min-height: 60px;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
}

.product-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 0;
    text-shadow: 0 3px 6px rgba(213, 0, 44, .4);
    background: linear-gradient(135deg, var(--accent-red), #ff1a4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-status {
    margin-bottom: 0;
}

.product-status .status-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    border-radius: 20px;
    font-size: .9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(0, 200, 83, .2);
    color: var(--success-green);
    border-color: rgba(0, 200, 83, .3);
}

.add-to-cart-btn {
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--accent-red), #ff1a4a);
    color: var(--white);
    border: none;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(213, 0, 44, .4);
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-top: auto;
}

.add-to-cart-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
    transition: left .5s ease;
}

.add-to-cart-btn:hover::before {
    left: 100%;
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #b3002e, #d5002e);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(213, 0, 44, .5);
}

/* Product Error */
.product-error {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-content {
    text-align: center;
    max-width: 500px;
}

.error-content i {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 2rem;
}

.error-content h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.error-content p {
    color: var(--light-gray);
    margin-bottom: 2rem;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: 1rem 2rem;
    background: var(--accent);
    color: var(--dark-gray);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all .3s ease;
}

.back-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal.open {
    display: flex;
}

.modal-content {
    background: var(--dark-gray);
    border: 1px solid rgba(235, 235, 235, .1);
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn .3s ease;
}

.modal-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(235, 235, 235, .1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.close-modal {
    background: 0 0;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--light-gray);
    transition: color .3s ease;
}

.close-modal:hover {
    color: var(--accent);
}

.modal-body {
    padding: 2rem;
}

/* Login Form */
.account-creation-notice {
    background: rgba(23, 162, 184, .15);
    border: 1px solid rgba(23, 162, 184, .3);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}

.account-creation-notice i {
    color: var(--lightning-blue);
    font-size: 1.1rem;
    margin-top: .1rem;
    flex-shrink: 0;
}

.account-creation-notice p {
    color: var(--light-gray);
    font-size: .9rem;
    line-height: 1.5;
    margin: 0;
}

.account-creation-notice strong {
    color: var(--white);
    font-weight: 600;
}

.input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
}

.input-group input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(235, 235, 235, .05);
    border: 1px solid rgba(235, 235, 235, .2);
    border-radius: 8px;
    color: var(--light-gray);
    font-size: 1rem;
    transition: all .3s ease;
}

.input-group input:focus {
    outline: 0;
    border-color: var(--accent);
    background: rgba(235, 235, 235, .1);
}

.input-group input::placeholder {
    color: rgba(235, 235, 235, .6);
}

.login-submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--accent);
    color: var(--dark-gray);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    margin-bottom: 1.5rem;
}

.login-submit-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: var(--dark-gray);
    border-left: 1px solid rgba(235, 235, 235, .1);
    transition: right .3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(235, 235, 235, .1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
}

.close-cart {
    background: 0 0;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--light-gray);
    transition: color .3s ease;
}

.close-cart:hover {
    color: var(--accent);
}

.cart-items {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(235, 235, 235, .1);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, .1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-right: 1rem;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-weight: 600;
    color: var(--white);
    margin-bottom: .25rem;
}

.cart-item-price {
    color: var(--accent);
    font-weight: 700;
}

.cart-item-option {
    color: var(--light-gray);
    font-size: .9rem;
    margin-top: .25rem;
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid rgba(235, 235, 235, .1);
}

.cart-total {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: right;
    color: var(--white);
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background: var(--accent);
    color: var(--dark-gray);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
}

.checkout-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* Checkout Form */
.checkout-form {
    margin-top: 2rem;
}

.checkout-form h4 {
    margin-bottom: 1rem;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
}

.checkout-form input {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(235, 235, 235, .05);
    border: 1px solid rgba(235, 235, 235, .2);
    border-radius: 8px;
    color: var(--light-gray);
    font-size: 1rem;
    transition: all .3s ease;
}

.checkout-form input:focus {
    outline: 0;
    border-color: var(--accent);
    background: rgba(235, 235, 235, .1);
}

.checkout-form input::placeholder {
    color: rgba(235, 235, 235, .6);
}

.email-notice {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 193, 7, .1);
    border: 1px solid rgba(255, 193, 7, .3);
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.email-notice i {
    color: var(--warning-orange);
    font-size: 1.2rem;
    margin-top: .2rem;
}

.email-notice p {
    color: var(--light-gray);
    margin: 0;
    font-size: .9rem;
    line-height: 1.5;
}

.terms-notice {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(40, 167, 69, .1);
    border: 1px solid rgba(40, 167, 69, .3);
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.terms-notice i {
    color: var(--success-green);
    font-size: 1.2rem;
    margin-top: .2rem;
}

.terms-notice p {
    color: var(--light-gray);
    margin: 0;
    font-size: .9rem;
    line-height: 1.5;
}

.terms-notice a {
    color: var(--success-green);
    text-decoration: none;
    font-weight: 600;
    transition: color .3s ease;
}

.terms-notice a:hover {
    color: #1e7e34;
    text-decoration: underline;
}

.support-notice {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.support-notice i {
    color: var(--accent);
    font-size: 1.2rem;
    margin-top: .2rem;
}

.support-notice p {
    color: var(--light-gray);
    margin: 0;
    font-size: .9rem;
    line-height: 1.5;
}

.payment-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.payment-btn {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    text-decoration: none;
    color: var(--white);
}

.payment-btn:disabled {
    opacity: .6;
    cursor: not-allowed;
}

.crypto-btn {
    background: linear-gradient(135deg, #f7931a, #ff9500);
    box-shadow: 0 4px 15px rgba(247, 147, 26, .3);
}

.crypto-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #e6850e, #f7931a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 147, 26, .4);
}

.card-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 4px 15px rgba(102, 126, 234, .3);
}

.card-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #5a6fd8, #667eea);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, .4);
}

/* Coupon */
.coupon-section {
    margin-bottom: 1.5rem;
}

.coupon-input-group {
    display: flex;
    gap: .5rem;
    margin-bottom: 1rem;
}

.coupon-input-group input {
    flex: 1;
    padding: 1rem;
    background: rgba(235, 235, 235, .05);
    border: 1px solid rgba(235, 235, 235, .2);
    border-radius: 8px;
    color: var(--light-gray);
    font-size: 1rem;
    transition: all .3s ease;
}

.coupon-input-group input:focus {
    outline: 0;
    border-color: var(--accent);
    background: rgba(235, 235, 235, .1);
}

.check-coupon-btn {
    padding: 1rem 1.5rem;
    background: var(--accent);
    color: var(--dark-gray);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    gap: .5rem;
    white-space: nowrap;
}

.check-coupon-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.coupon-message {
    padding: .75rem;
    border-radius: 6px;
    font-size: .9rem;
    font-weight: 500;
    display: none;
}

.coupon-message.success {
    background: rgba(40, 167, 69, .1);
    border: 1px solid rgba(40, 167, 69, .3);
    color: var(--success-green);
    display: block;
}

.coupon-message.error {
    background: rgba(220, 53, 69, .1);
    border: 1px solid rgba(220, 53, 69, .3);
    color: var(--danger-red);
    display: block;
}

/* Duplicate Warning */
.duplicate-warning-container {
    margin: 1rem 0;
}

.duplicate-warning {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: 1rem;
    background: rgba(255, 193, 7, .1);
    border: 1px solid rgba(255, 193, 7, .3);
    border-radius: 8px;
    color: #ffc107;
}

.duplicate-warning i {
    font-size: 1.2rem;
    margin-top: .1rem;
    flex-shrink: 0;
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: 60px 0;
}

.why-choose-us-section .section-header {
    text-align: left;
}

.why-choose-us-section .section-header h2 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-choose-us-section .section-subtitle {
    color: var(--light-gray);
    margin-top: 6px;
    opacity: .85;
}

.vouch-count-stat {
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--accent);
    font-size: .95rem;
}

.vouches-full .subheading {
    margin-bottom: 12px;
}

.why-choose-us-section .section-cta {
    margin-top: 10px;
}

.why-choose-us-section .section-cta .cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.why-choose-us-section .section-cta .cta-link:hover {
    text-decoration: underline;
}

.why-choose-us-section .section-header p {
    margin: 0;
    max-width: none;
}

.why-choose-us-section #vouchesContainer.announcements-container {
    overflow: auto;
    max-height: 420px;
}

/* Discord Widget */
.discord-widget-section {
    padding: 60px 0;
    background: rgba(20, 20, 20, .95);
}

.discord-member-count {
    text-align: center;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 20px;
}

.discord-member-count i {
    color: #7289da;
    margin-right: 8px;
}

.discord-widget-wrapper {
    display: flex;
    justify-content: center;
}

.discord-widget-wrapper iframe {
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .5);
    max-width: 100%;
}

/* FAQ Page */
.faq-page {
    min-height: 100vh;
    padding-top: 100px;
    position: relative;
    z-index: 2;
    padding-bottom: 4rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
}

.faq-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.faq-header p {
    font-size: 1.1rem;
    color: var(--light-gray);
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(235, 235, 235, .05);
    border: 1px solid rgba(235, 235, 235, .1);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all .3s ease;
}

.faq-item:hover {
    border-color: rgba(235, 235, 235, .2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all .3s ease;
}

.faq-question:hover {
    background: rgba(235, 235, 235, .03);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    color: var(--accent);
    font-size: 1rem;
    transition: transform .3s ease;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
    padding: 0 2rem;
}

.faq-answer.open {
    max-height: 1000px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--light-gray);
    line-height: 1.7;
    margin: 0;
    padding-top: 1rem;
}

.nav-link-faq {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    border-radius: 20px;
    transition: all .3s ease;
    text-decoration: none;
    color: var(--light-gray);
    font-size: .9rem;
}

.nav-link-faq:hover {
    color: var(--accent) !important;
    background: rgba(255, 255, 255, .1);
}

/* Terms Page */
.terms-page {
    min-height: 100vh;
    padding-top: 100px;
    position: relative;
    z-index: 2;
}

.terms-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
}

.terms-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.terms-header p {
    font-size: 1.1rem;
    color: var(--light-gray);
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(235, 235, 235, .05);
    border: 1px solid rgba(235, 235, 235, .1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.terms-section {
    margin-bottom: 3rem;
}

.terms-section:last-child {
    margin-bottom: 0;
}

.terms-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(235, 235, 235, .1);
    padding-bottom: .5rem;
}

.terms-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent);
    margin: 1.5rem 0 1rem;
}

.terms-section p {
    color: var(--light-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.terms-section ul {
    color: var(--light-gray);
    margin: 1rem 0;
    padding-left: 2rem;
}

.terms-section li {
    margin-bottom: .5rem;
    line-height: 1.6;
}

.contact-info {
    background: rgba(235, 235, 235, .05);
    border: 1px solid rgba(235, 235, 235, .1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: rgba(35, 35, 35, .95);
    border-top: 1px solid rgba(235, 235, 235, .1);
    padding: 3rem 0 1rem;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section h4 {
    font-size: 1.1rem;
}

.footer-section p {
    color: var(--light-gray);
    line-height: 1.6;
    margin-bottom: .5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: .5rem;
}

.footer-section ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color .3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(235, 235, 235, .1);
    padding-top: 1rem;
    text-align: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(.9) translateY(-20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* ==================== RESPONSIVE MOBILE ==================== */

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-header-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-image-section {
        position: static;
    }
}

/* Mobile - 768px */
@media (max-width: 768px) {

    /* --- Navbar --- */
    .navbar {
        padding: 0.7rem 0;
    }

    .nav-container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 0 15px;
        justify-content: space-between;
    }

    .nav-logo {
        height: 38px;
    }

    .nav-actions {
        gap: 0.75rem;
    }

    .login-btn {
        padding: 0.4rem 0.9rem;
        font-size: 0.82rem;
    }

    .nav-link-faq {
        font-size: 0.82rem !important;
    }

    /* --- Hero --- */
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 110px 20px 60px;
    }

    .hero-logo {
        height: 80px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.2rem;
        margin-bottom: 2rem;
    }

    .feature {
        min-width: 80px;
    }

    .feature i {
        font-size: 1.5rem;
    }

    .feature span {
        font-size: 0.78rem;
    }

    .cta-btn {
        padding: 0.85rem 1.5rem;
        font-size: 1rem;
    }

    /* --- Section Headers --- */
    .section-header h2 {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    /* --- Products --- */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-card {
        max-width: 100%;
    }

    .product-info {
        padding: 1.5rem;
    }

    .product-title {
        font-size: 1.6rem;
    }

    .product-price {
        font-size: 1.6rem;
    }

    .product-image {
        height: 200px;
    }

    /* --- Subscription Options on Mobile --- */
    .subscription-options {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    /* --- Features Grid --- */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    /* --- Cart Sidebar --- */
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .cart-sidebar.open {
        right: 0;
    }

    /* --- Modals --- */
    .modal-content {
        width: 95%;
        margin: 0.75rem auto;
        max-height: 90vh;
        overflow-y: auto;
    }

    .payment-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .payment-btn {
        width: 100%;
        justify-content: center;
    }

    /* --- Announcements --- */
    .announcements-section {
        padding: 40px 0;
    }

    .announcement-card {
        padding: 16px;
        margin-bottom: 12px;
    }

    .announcement-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    /* --- Discord Widget --- */
    .discord-widget-wrapper iframe {
        width: 100% !important;
        height: 320px !important;
    }

    /* --- Footer --- */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    /* --- Product Page --- */
    .product-header-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-image-section {
        position: static;
    }

    .product-image-large {
        height: 300px;
        font-size: 5rem;
    }

    .product-info-section h1 {
        font-size: 2.2rem;
    }

    .purchase-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .purchase-options-section {
        padding: 2rem;
    }

    .product-navigation-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .nav-btn {
        width: 100%;
        justify-content: center;
    }

    .feature-category-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .category-btn {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }

    .profile-container {
        padding: 100px 15px 40px;
    }

    .why-choose-us-section {
        padding: 40px 0;
    }
}

/* Small Mobile - 480px */
@media (max-width: 480px) {

    /* --- Hero --- */
    .hero-title {
        font-size: 2rem;
    }

    .hero-logo {
        height: 64px;
    }

    .hero-features {
        gap: 1rem;
    }

    /* --- Section --- */
    .section-header h2 {
        font-size: 1.6rem;
    }

    /* --- Navbar --- */
    .nav-brand h1 {
        font-size: 1.3rem;
    }

    .login-btn {
        padding: 0.35rem 0.7rem;
        font-size: 0.78rem;
    }

    /* --- Product Cards --- */
    .product-info {
        padding: 1.2rem;
    }

    .product-title {
        font-size: 1.4rem;
    }

    .subscription-options {
        grid-template-columns: 1fr;
    }

    /* --- Features --- */
    .feature-card {
        padding: 1.5rem 1.2rem;
    }

    /* --- Footer --- */
    .footer-content {
        grid-template-columns: 1fr;
    }

    /* --- Product Page --- */
    .product-image-large {
        height: 220px;
        font-size: 4rem;
    }

    .product-info-section h1 {
        font-size: 1.8rem;
    }

    .purchase-options-section {
        padding: 1.5rem;
    }

    .option-price {
        font-size: 1.8rem;
    }

    /* --- Admin Panel --- */
    .stock-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Very Small - 360px */
@media (max-width: 360px) {
    .nav-logo {
        height: 30px;
    }

    .hero-logo {
        height: 52px;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .product-title {
        font-size: 1.2rem;
    }

    .modal-content {
        width: 100%;
        margin: 0;
        border-radius: 0;
    }
}

/* Discord Widget specific breakpoint */
@media (max-width: 600px) {
    .discord-widget-wrapper iframe {
        height: 350px !important;
        width: 100% !important;
    }
}