:root {
    --pg3d-primary: #667eea;
    --pg3d-secondary: #764ba2;
    --pg3d-accent: #f093fb;
    --pg3d-success: #4facfe;
    --pg3d-dark: #1a1a2e;
}

/* Hero Section */
.pg3d-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--pg3d-primary) 0%, var(--pg3d-secondary) 100%);
    overflow: hidden;
    padding: 6rem 1rem 4rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-icons i {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 3rem;
    animation: float 20s infinite ease-in-out;
}

.floating-icons i:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-icons i:nth-child(2) { top: 60%; left: 80%; animation-delay: 2s; }
.floating-icons i:nth-child(3) { top: 40%; left: 60%; animation-delay: 4s; }
.floating-icons i:nth-child(4) { top: 70%; left: 20%; animation-delay: 6s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

.pg3d-hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-text {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.hero-title {
    margin: 0;
    color: white;
}

.title-main {
    display: block;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
}

.title-sub {
    display: block;
    font-size: clamp(1.2rem, 4vw, 2rem);
    font-weight: 300;
    opacity: 0.95;
}

.hero-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin: 1.5rem auto 0;
    max-width: 600px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    margin: 0 0 1rem;
}

.title-accent {
    display: block;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    background: linear-gradient(135deg, var(--pg3d-primary), var(--pg3d-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.section-title .title-main {
    display: block;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-color);
    font-weight: 900;
    text-shadow: none;
}

.section-intro {
    color: var(--text-color);
    opacity: 0.8;
    font-size: clamp(1rem, 2vw, 1.1rem);
    max-width: 700px;
    margin: 0 auto;
}

/* Premium Mod Menu */
.premium-mod-menu {
    padding: 5rem 1rem;
    background: var(--background-color);
}

.mod-menu-card {
    background: var(--card-background);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.mod-menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--pg3d-primary), var(--pg3d-accent));
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.price-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-tag {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--pg3d-primary), var(--pg3d-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-label {
    color: var(--text-color);
    opacity: 0.7;
    font-size: 1rem;
}

.lifetime-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--pg3d-success), var(--pg3d-accent));
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.3);
}

.lifetime-badge i {
    font-size: 1.5rem;
}

/* Info Banner */
.info-banner {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(240, 147, 251, 0.1));
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
}

.info-item i {
    color: var(--pg3d-primary);
    font-size: 1.2rem;
}

/* Platform Support */
.platform-support {
    margin-bottom: 2rem;
    text-align: center;
}

.platform-support h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.platform-support h3 i {
    color: var(--pg3d-primary);
}

.platforms {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--pg3d-primary), var(--pg3d-secondary));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.platform-badge i {
    font-size: 1.2rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-group h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.feature-group h3 i {
    color: var(--pg3d-primary);
    font-size: 1.8rem;
}

.feature-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-group ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--text-color);
    font-size: 1rem;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s;
}

.feature-group ul li:last-child {
    border-bottom: none;
}

.feature-group ul li:hover {
    padding-left: 0.5rem;
    color: var(--pg3d-primary);
}

.feature-group ul li i {
    color: var(--pg3d-success);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Card Footer */
.card-footer {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-purchase, .btn-discord {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-purchase {
    background: linear-gradient(135deg, var(--pg3d-primary), var(--pg3d-secondary));
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-purchase:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.btn-discord {
    background: #5865F2;
    color: white;
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.3);
}

.btn-discord:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(88, 101, 242, 0.4);
}

/* Services List */
.services-list {
    padding: 5rem 1rem;
    background: var(--light-gray);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card-background);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--pg3d-primary), var(--pg3d-accent));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.service-card .price {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--pg3d-primary), var(--pg3d-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Account Tiers */
.account-tiers {
    padding: 5rem 1rem;
    background: var(--background-color);
}

.tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tier-card {
    background: var(--card-background);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--border-color);
    transition: all 0.3s;
    position: relative;
    overflow: visible;
}

.tier-card.featured {
    border-color: var(--pg3d-primary);
    transform: scale(1.05);
}

.tier-card.featured::before {
    content: '';
    display: none;
}

.tier-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.tier-card h3 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 800;
}

.tier-card .tier-price {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--pg3d-primary), var(--pg3d-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    display: block;
}

.tier-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.tier-card ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
}

.tier-card ul li:last-child {
    border-bottom: none;
}

.tier-card ul li i {
    color: var(--pg3d-success);
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 6rem 1rem;
    background: linear-gradient(135deg, var(--pg3d-primary) 0%, var(--pg3d-secondary) 100%);
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.cta-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="white" opacity="0.3"/></svg>') repeat;
    animation: particles 20s linear infinite;
}

@keyframes particles {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-icon {
    font-size: 4rem;
    color: white;
    margin-bottom: 2rem;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.cta-description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.cta-feature i {
    font-size: 1.5rem;
    color: var(--pg3d-accent);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary, .btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-cta-primary {
    background: white;
    color: var(--pg3d-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
    .pg3d-hero {
        min-height: 50vh;
        padding: 5rem 1rem 3rem;
    }

    .premium-mod-menu, .services-list, .account-tiers {
        padding: 3rem 1rem;
    }

    .mod-menu-card {
        padding: 2rem;
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .tier-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .pg3d-hero {
        padding: 4rem 1rem 2rem;
    }

    .mod-menu-card {
        padding: 1.5rem;
    }

    .info-banner {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .platforms {
        flex-direction: column;
    }

    .platform-badge {
        width: 100%;
        justify-content: center;
    }

    .service-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .tier-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 4rem 1rem;
    }

    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-purchase, .btn-discord, .btn-cta-primary, .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .special-services-grid {
        grid-template-columns: 1fr;
    }

    .lifetime-offer {
        padding: 2rem 1.5rem;
    }

    .lifetime-benefits {
        grid-template-columns: 1fr;
    }

    .btn-lifetime {
        width: 100%;
        justify-content: center;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .service-grid {
        grid-template-columns: 1fr;
    }

    .card-footer {
        flex-direction: column;
    }

    .btn-purchase, .btn-discord {
        width: 100%;
        justify-content: center;
    }
}

/* Dark Mode */
[data-theme="dark"] .service-card,
[data-theme="dark"] .tier-card,
[data-theme="dark"] .mod-menu-card {
    background: var(--card-background);
    border-color: var(--border-color);
}

[data-theme="dark"] .service-card:hover,
[data-theme="dark"] .tier-card:hover {
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

/* Special Services Note */
.special-services-note {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-background);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--pg3d-primary);
}

.special-services-note h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    justify-content: center;
}

.special-services-note h3 i {
    color: var(--pg3d-accent);
}

.special-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.special-service {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(240, 147, 251, 0.1));
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.special-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.2);
}

.special-service i {
    font-size: 3rem;
    color: var(--pg3d-primary);
    margin-bottom: 1rem;
}

.special-service h4 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.special-service p {
    color: var(--text-color);
    opacity: 0.8;
}

/* Lifetime Offer */
.lifetime-offer {
    margin-top: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 20px 60px rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 25px 70px rgba(255, 215, 0, 0.6); }
}

.lifetime-offer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.lifetime-offer .lifetime-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.lifetime-offer .lifetime-icon i {
    font-size: 4rem;
    color: white;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    animation: rotate-infinity 4s linear infinite;
}

@keyframes rotate-infinity {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.lifetime-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.lifetime-content h3 {
    color: white;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.lifetime-content > p {
    color: white;
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.lifetime-benefits {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.lifetime-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.lifetime-benefits li i {
    color: #00FF00;
    font-size: 1.3rem;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.btn-lifetime {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 3rem;
    background: white;
    color: #FF8C00;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-top: 1.5rem;
}

.btn-lifetime:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, white, #FFF8DC);
}

.btn-lifetime i {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Game Showcase Gallery */
.game-showcase {
    padding: 5rem 1rem;
    background: var(--background-color);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.showcase-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--card-background);
    aspect-ratio: 16/9;
}

.showcase-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(240, 147, 251, 0.3));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
}

.showcase-item:hover::before {
    opacity: 1;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

.showcase-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .showcase-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }
}

/* Reviews Banner */
.reviews-banner {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 1rem 1rem;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
    position: sticky;
    top: 70px;
    z-index: 999;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    color: #1a1a2e;
    font-weight: 700;
    font-size: 1.1rem;
}

.banner-content i.fa-star {
    color: #FF4500;
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.banner-link {
    color: #1a1a2e;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    background: white;
    border-radius: 50px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
}

.banner-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: #fff8dc;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10000;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.lightbox-close:hover {
    transform: rotate(90deg);
    background: rgba(255, 255, 255, 0.2);
}

#lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s;
}

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

.showcase-item {
    cursor: pointer;
}

@media (max-width: 768px) {
    .reviews-banner {
        top: 60px;
        padding: 0.75rem 1rem;
    }
    
    .banner-content {
        font-size: 0.95rem;
        gap: 0.5rem;
    }
    
    .banner-content span {
        display: none;
    }
    
    .banner-link {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }
    
    .lightbox {
        padding: 1rem;
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }
    
    #lightbox-img {
        max-width: 95%;
        max-height: 95%;
    }
}

@media (max-width: 480px) {
    .banner-content i.fa-star {
        font-size: 1.2rem;
    }
}

/* Top Navigation */
.top-navigation {
    padding: 2rem 1rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(240, 147, 251, 0.05));
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 70px;
    z-index: 100;
    backdrop-filter: blur(10px);
}

/* Bottom Navigation */
.bottom-navigation {
    padding: 3rem 1rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(240, 147, 251, 0.05));
    border-top: 1px solid var(--border-color);
}

.toc-title {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.top-navigation .toc-title {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-bottom: 1rem;
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.top-navigation .toc-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 0.75rem;
}

.toc-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--card-background);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.top-navigation .toc-item {
    padding: 0.75rem 0.5rem;
    gap: 0.4rem;
}

.toc-item:hover {
    transform: translateY(-5px);
    border-color: var(--pg3d-primary);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.2);
    color: var(--pg3d-primary);
}

.toc-item i {
    font-size: 2rem;
    color: var(--pg3d-primary);
    transition: all 0.3s;
}

.top-navigation .toc-item i {
    font-size: 1.5rem;
}

.toc-item:hover i {
    transform: scale(1.1);
    color: var(--pg3d-accent);
}

.toc-item span {
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
}

.top-navigation .toc-item span {
    font-size: 0.85rem;
}

.toc-faq {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    border-color: var(--pg3d-accent);
}

/* Enhanced Account Tiers */
.tier-card {
    position: relative;
    overflow: hidden;
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
    z-index: 10;
    animation: bounce 2s infinite;
    transform: rotate(12deg);
}

.tier-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.tier-description {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(240, 147, 251, 0.05));
    border-radius: 12px;
    border-left: 4px solid var(--pg3d-primary);
}

.tier-description p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.tier-features {
    margin-bottom: 2rem;
}

.tier-features h4 {
    color: var(--text-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tier-benefits {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.1), rgba(240, 147, 251, 0.1));
    border-radius: 12px;
}

.tier-benefits h4 {
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-color);
    font-weight: 600;
}

.benefits-list li i {
    color: var(--pg3d-accent);
    font-size: 1rem;
}

.tier-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-info {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--pg3d-primary);
    border: 2px solid var(--pg3d-primary);
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-info:hover {
    background: var(--pg3d-primary);
    color: white;
    transform: translateY(-2px);
}

/* Special Services Section */
.special-services-section {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--card-background);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--pg3d-primary);
    position: relative;
    overflow: hidden;
}

.special-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--pg3d-primary), var(--pg3d-accent), var(--pg3d-success));
}

.special-header {
    text-align: center;
    margin-bottom: 3rem;
}

.special-header h3 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.special-header h3 i {
    color: var(--pg3d-accent);
    font-size: 2.5rem;
}

.special-header p {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.special-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.special-service {
    background: var(--card-background);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.special-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--pg3d-primary), var(--pg3d-accent));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.special-service:hover::before {
    transform: scaleX(1);
}

.special-service:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.2);
    border-color: var(--pg3d-primary);
}

.lifetime-highlight {
    border-color: #FFD700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 165, 0, 0.05));
}

.lifetime-highlight::before {
    background: linear-gradient(90deg, #FFD700, #FFA500);
}

.priority-service {
    border-color: var(--pg3d-success);
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.05), rgba(102, 126, 234, 0.05));
}

.warranty-service {
    border-color: var(--pg3d-accent);
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.05), rgba(118, 75, 162, 0.05));
}

.service-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 4rem;
    color: var(--pg3d-primary);
    transition: all 0.3s;
}

.lifetime-highlight .service-icon i {
    color: #FFD700;
}

.priority-service .service-icon i {
    color: var(--pg3d-success);
}

.warranty-service .service-icon i {
    color: var(--pg3d-accent);
}

.special-service:hover .service-icon i {
    transform: scale(1.1) rotate(5deg);
}

.service-content h4 {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: center;
}

.service-desc {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-color);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-color);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--pg3d-primary), var(--pg3d-accent));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-top: 1rem;
    text-align: center;
    width: 100%;
}

.lifetime-highlight .service-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.priority-service .service-badge {
    background: linear-gradient(135deg, var(--pg3d-success), var(--pg3d-primary));
}

.warranty-service .service-badge {
    background: linear-gradient(135deg, var(--pg3d-accent), var(--pg3d-secondary));
}

/* Combo Offer */
.combo-offer {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.3);
}

.combo-offer::before {
    content: '🎁';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 8rem;
    opacity: 0.1;
    transform: rotate(15deg);
}

.combo-content h4 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.combo-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.combo-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.combo-benefits span {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Smooth Scrolling for Navigation */
html {
    scroll-behavior: smooth;
}

/* Section Padding Adjustment for Fixed Header */
section[id] {
    scroll-margin-top: 100px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .toc-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    
    .top-navigation .toc-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .special-services-grid {
        grid-template-columns: 1fr;
    }
    
    .special-services-section {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .top-navigation {
        padding: 1rem 0.5rem;
        top: 60px;
    }
    
    .bottom-navigation {
        padding: 2rem 1rem;
    }
    
    .toc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .top-navigation .toc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .toc-item {
        padding: 0.75rem 0.5rem;
    }
    
    .top-navigation .toc-item {
        padding: 0.6rem 0.4rem;
    }
    
    .toc-item i {
        font-size: 1.5rem;
    }
    
    .top-navigation .toc-item i {
        font-size: 1.2rem;
    }
    
    .toc-item span {
        font-size: 0.8rem;
    }
    
    .top-navigation .toc-item span {
        font-size: 0.7rem;
    }
    
    .tier-description,
    .tier-benefits {
        padding: 1rem;
    }
    
    .special-services-section {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .special-service {
        padding: 1.5rem;
    }
    
    .combo-offer {
        padding: 1.5rem;
    }
    
    .combo-benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .toc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .top-navigation .toc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tier-actions {
        gap: 0.75rem;
    }
    
    .btn-purchase,
    .btn-info {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Animation for scroll-triggered elements */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tier-card,
.special-service,
.toc-item {
    animation: slideInUp 0.6s ease-out;
}

/* Staggered animation delays */
.tier-card:nth-child(1) { animation-delay: 0.1s; }
.tier-card:nth-child(2) { animation-delay: 0.2s; }
.tier-card:nth-child(3) { animation-delay: 0.3s; }

.toc-item:nth-child(1) { animation-delay: 0.1s; }
.toc-item:nth-child(2) { animation-delay: 0.2s; }
.toc-item:nth-child(3) { animation-delay: 0.3s; }
.toc-item:nth-child(4) { animation-delay: 0.4s; }
.toc-item:nth-child(5) { animation-delay: 0.5s; }

/* Promotional Stickers */
.promo-sticker {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #FF4444, #FF0000);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.85rem;
    box-shadow: 0 5px 20px rgba(255, 68, 68, 0.5);
    z-index: 10;
    transform: rotate(12deg);
    animation: pulse-promo 2s infinite;
}

@keyframes pulse-promo {
    0%, 100% { transform: rotate(12deg) scale(1); }
    50% { transform: rotate(12deg) scale(1.1); }
}

.promo-sticker.hot-deal {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a2e;
}

.promo-sticker.limited {
    background: linear-gradient(135deg, #9C27B0, #E91E63);
}

.promo-sticker.save {
    background: linear-gradient(135deg, #00C853, #00E676);
}

.service-card,
.tier-card {
    position: relative;
}

/* Comparison Section */
.comparison-section {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(240, 147, 251, 0.05));
}

.comparison-header {
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-color);
    font-weight: 900;
    margin-bottom: 1rem;
}

.comparison-header p {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 1.2rem;
}

.comparison-table-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.comparison-table {
    width: 100%;
    background: var(--card-background);
    border-collapse: collapse;
    border-radius: 20px;
    overflow: hidden;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--pg3d-primary), var(--pg3d-secondary));
}

.comparison-table thead th {
    color: white;
    padding: 1.5rem;
    font-size: 1.2rem;
    font-weight: 800;
    text-align: center;
}

.comparison-table thead th:first-child {
    text-align: left;
    font-size: 1.4rem;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s;
}

.comparison-table tbody tr:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(240, 147, 251, 0.05));
}

.comparison-table tbody td {
    padding: 1.5rem;
    text-align: center;
    color: var(--text-color);
    font-size: 1rem;
}

.comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-table .riker-column {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(240, 147, 251, 0.1));
    border-left: 3px solid var(--pg3d-primary);
    border-right: 3px solid var(--pg3d-primary);
}

.comparison-table thead .riker-column {
    position: relative;
}

.comparison-table thead .riker-column::after {
    content: '👑 BEST';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a2e;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 900;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.check-icon {
    color: #00C853;
    font-size: 1.5rem;
}

.cross-icon {
    color: #FF4444;
    font-size: 1.5rem;
}

.highlight-text {
    color: var(--pg3d-primary);
    font-weight: 800;
}

.expensive-text {
    color: #FF4444;
    font-weight: 800;
    text-decoration: line-through;
}

.official-column {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.05), rgba(255, 140, 0, 0.05));
}

.comparison-cta {
    text-align: center;
    margin-top: 3rem;
}

.comparison-cta h3 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.comparison-cta .btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--pg3d-primary), var(--pg3d-secondary));
    color: white;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.comparison-cta .btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

@media (max-width: 992px) {
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .comparison-section {
        padding: 3rem 0.5rem;
    }
    
    .comparison-table-wrapper {
        border-radius: 10px;
    }
    
    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .comparison-table thead th:first-child,
    .comparison-table tbody td:first-child {
        font-size: 0.9rem;
    }
    
    .check-icon,
    .cross-icon {
        font-size: 1.2rem;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--pg3d-primary), var(--pg3d-secondary));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.6);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* Mod Menu Gallery Section */
.mod-menu-gallery {
    padding: 5rem 1rem;
    background: var(--light-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--card-background);
    cursor: pointer;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.4), rgba(240, 147, 251, 0.4));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item::after {
    content: '🔍 Click to enlarge';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 2;
    text-align: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    padding: 1.5rem;
    background: var(--card-background);
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 600;
    text-align: center;
    border-top: 3px solid var(--pg3d-primary);
}

.gallery-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(240, 147, 251, 0.1));
    border-radius: 16px;
    border: 2px solid var(--pg3d-primary);
}

.gallery-note {
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.btn-gallery-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--pg3d-primary), var(--pg3d-secondary));
    color: white;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-gallery-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .mod-menu-gallery {
        padding: 3rem 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-caption {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .gallery-item::after {
        font-size: 0.95rem;
        padding: 0.75rem;
    }
    
    .gallery-cta {
        padding: 1.5rem;
    }
    
    .gallery-note {
        font-size: 1rem;
    }
    
    .btn-gallery-cta {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-item::after {
        font-size: 0.85rem;
    }
}

/* Mod Menu Screenshots Inline */
.mod-menu-screenshots-inline {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(240, 147, 251, 0.05));
    border-radius: 16px;
    border: 2px solid var(--pg3d-primary);
}

.screenshots-title {
    text-align: center;
    color: var(--text-color);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.screenshots-title i {
    color: var(--pg3d-primary);
    font-size: 2rem;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.screenshot-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    aspect-ratio: 16/9;
}

.screenshot-item::before {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 2;
}

.screenshot-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.7), rgba(240, 147, 251, 0.7));
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.screenshot-item:hover::before,
.screenshot-item:hover::after {
    opacity: 1;
}

.screenshot-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.screenshot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.screenshot-item:hover img {
    transform: scale(1.05);
}

.screenshots-note {
    text-align: center;
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.screenshots-note a {
    color: var(--pg3d-primary);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.screenshots-note a:hover {
    color: var(--pg3d-accent);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .mod-menu-screenshots-inline {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .screenshots-title {
        font-size: 1.4rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .screenshots-note {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Gifting Feature Highlight */
.gifting-feature {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    border: 2px solid #FFD700;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    animation: pulse-gold 3s ease-in-out infinite;
}

@keyframes pulse-gold {
    0%, 100% { 
        box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
        border-color: #FFD700;
    }
    50% { 
        box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
        border-color: #FFA500;
    }
}

.gifting-feature::before {
    content: '⭐ EXCLUSIVE';
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a2e;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    animation: bounce 2s infinite;
}

.gifting-feature h3 {
    color: #FFD700;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.gifting-feature h3 i {
    color: #FFA500;
    animation: rotate-gift 3s linear infinite;
}

@keyframes rotate-gift {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-10deg) scale(1.1); }
    50% { transform: rotate(10deg) scale(1); }
    75% { transform: rotate(-10deg) scale(1.1); }
}

.gifting-feature ul li {
    border-bottom-color: rgba(255, 215, 0, 0.2);
}

.gifting-feature ul li i {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.gifting-feature ul li:hover {
    background: rgba(255, 215, 0, 0.05);
    padding-left: 1rem;
    color: #FFA500;
}

/* Golden Border for Mod Menu Card */
.mod-menu-card.golden-border {
    position: relative;
    border: 4px solid transparent;
    background-image: 
        linear-gradient(var(--card-background), var(--card-background)),
        linear-gradient(135deg, #FFD700, #FFA500, #FFD700, #FF8C00, #FFD700);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 0 40px rgba(255, 215, 0, 0.3),
        inset 0 0 60px rgba(255, 215, 0, 0.05);
    animation: golden-glow 3s ease-in-out infinite;
}

@keyframes golden-glow {
    0%, 100% {
        box-shadow: 
            0 20px 60px rgba(0, 0, 0, 0.1),
            0 0 40px rgba(255, 215, 0, 0.3),
            inset 0 0 60px rgba(255, 215, 0, 0.05);
    }
    50% {
        box-shadow: 
            0 25px 70px rgba(0, 0, 0, 0.15),
            0 0 60px rgba(255, 215, 0, 0.5),
            inset 0 0 80px rgba(255, 215, 0, 0.1);
    }
}

.mod-menu-card.golden-border::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, #FFD700, #FFA500, #FFD700, #FF8C00, #FFD700);
    border-radius: 24px;
    z-index: -1;
    animation: rotate-border 6s linear infinite;
    background-size: 200% 200%;
}

@keyframes rotate-border {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.mod-menu-card.golden-border::after {
    content: '⭐ PREMIUM MOD MENU ⭐';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a2e;
    padding: 0.6rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
    z-index: 10;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
}

@media (max-width: 768px) {
    .mod-menu-card.golden-border::after {
        font-size: 0.75rem;
        padding: 0.5rem 1.5rem;
        top: -15px;
    }
}
