/* ===========================================
   Product Page Styles - GameBro
   Matches the dark theme with purple/gold accents
   =========================================== */

body.product-page-body {
    background: linear-gradient(180deg, #1a0a2e 0%, #0f0620 50%, #0a0118 100%);
}

/* Layout */
.product-page {
    padding: 80px 20px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Breadcrumb */
.pp-breadcrumb {
    margin-bottom: 30px;
    font-size: 14px;
}

.pp-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.pp-breadcrumb a:hover {
    color: #8B5CF6;
}

.pp-breadcrumb .pp-breadcrumb-sep {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 10px;
}

.pp-breadcrumb .pp-breadcrumb-current {
    color: #fff;
    font-weight: 600;
}

/* Product Badge */
.pp-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 20px;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.pp-badge-purple {
    background: linear-gradient(135deg, #8B5CF6, #6D28D9);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.pp-badge-pink {
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
}

.pp-badge-gold {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.pp-badge-green {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

/* Main Grid */
.pp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Image Column */
.pp-images {
    position: sticky;
    top: 120px;
}

.pp-image-main {
    background: radial-gradient(circle at center, rgba(139,92,246,0.7) 0%, rgba(139,92,246,0.4) 30%, rgba(139,92,246,0.15) 55%, transparent 80%),
                rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.1),
                inset 0 0 80px rgba(139,92,246,0.3);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.pp-image-main:hover {
    background: radial-gradient(circle at center, rgba(139,92,246,0.9) 0%, rgba(139,92,246,0.55) 30%, rgba(139,92,246,0.2) 55%, transparent 80%),
                rgba(255, 255, 255, 0.03);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.1),
                inset 0 0 100px rgba(139,92,246,0.4);
}

.pp-image-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
}

.pp-image-main img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.pp-image-main:hover img {
    transform: scale(1.08);
}

.pp-image-main {
    cursor: zoom-in;
}

/* Image Lightbox Modal */
.pp-lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    cursor: zoom-out;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.pp-lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.pp-lightbox-overlay img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.pp-lightbox-overlay.active img {
    transform: scale(1);
}

.pp-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.pp-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Highlight Box (FREE Case, Multiplayer, etc.) */
.pp-highlight-box {
    border-radius: 16px;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pp-highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    opacity: 0.4;
}

.pp-highlight-green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.15));
    border: 1px solid rgba(16, 185, 129, 0.4);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.1);
}

.pp-highlight-pink {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(139, 92, 246, 0.15));
    border: 1px solid rgba(236, 72, 153, 0.4);
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.1);
}

.pp-highlight-purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(109, 40, 217, 0.15));
    border: 1px solid rgba(139, 92, 246, 0.4);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.1);
}

.pp-highlight-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.pp-highlight-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 4px;
}

.pp-highlight-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Trust Badges */
.pp-trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.pp-trust-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.pp-trust-badge:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

.pp-trust-badge-icon {
    font-size: 24px;
    margin-bottom: 4px;
}

.pp-trust-badge-text {
    font-size: 12px;
    font-weight: 600;
}

.pp-trust-badge-green {
    border-color: rgba(16, 185, 129, 0.3);
}

.pp-trust-badge-green .pp-trust-badge-text {
    color: #10b981;
}

.pp-trust-badge-purple {
    border-color: rgba(139, 92, 246, 0.3);
}

.pp-trust-badge-purple .pp-trust-badge-text {
    color: #8B5CF6;
}

.pp-trust-badge-gold {
    border-color: rgba(251, 191, 36, 0.3);
}

.pp-trust-badge-gold .pp-trust-badge-text {
    color: #fbbf24;
}

.pp-trust-badge-pink {
    border-color: rgba(236, 72, 153, 0.3);
}

.pp-trust-badge-pink .pp-trust-badge-text {
    color: #ec4899;
}

/* Product Title */
.pp-title {
    font-size: 48px;
    font-family: 'Oxanium', sans-serif;
    font-weight: 800;
    margin: 0 0 16px 0;
    color: #ffffff;
    line-height: 1.1;
}

/* Product Subtitle */
.pp-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    line-height: 1.4;
}

/* Rating */
.pp-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.pp-stars {
    color: #fbbf24;
    font-size: 18px;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.4);
}

.pp-rating-text {
    color: rgba(255, 255, 255, 0.6);
}

/* Pricing */
.pp-pricing {
    margin-bottom: 40px;
}

.pp-price-row {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 12px;
}

.pp-price-old {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.pp-price-current {
    font-size: 48px;
    font-weight: 800;
    font-family: 'Oxanium', sans-serif;
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
}

.pp-price-save {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    padding: 8px 16px;
    border-radius: 12px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.pp-bonus {
    color: #10b981;
    font-weight: 700;
    font-size: 16px;
}

/* Package Selection */
.pp-packages {
    margin-bottom: 40px;
}

.pp-packages-label {
    display: block;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
    font-size: 18px;
}

.package-option {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.package-option:hover {
    border-color: rgba(139, 92, 246, 0.5);
    background: rgba(139, 92, 246, 0.08);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.15);
}

.package-option:hover::before {
    opacity: 1;
}

.package-option.selected {
    border-color: #8B5CF6;
    background: rgba(139, 92, 246, 0.12);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.25);
}

.package-option.selected::before {
    opacity: 1;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.6), transparent);
}

.pp-package-row {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 12px;
}

.pp-package-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #fff;
}

.pp-package-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.pp-package-price-old {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.pp-package-price {
    font-size: 32px;
    font-weight: 800;
    font-family: 'Oxanium', sans-serif;
    color: #fbbf24;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.3);
}

.pp-package-save {
    font-size: 12px;
    color: #10b981;
    font-weight: 700;
}

.pp-package-includes {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.pp-package-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(251, 191, 36, 0.4);
}

.pp-selection-display {
    margin-top: 12px;
    color: #10b981;
    font-weight: 600;
    display: none;
}

/* Color Selection */
.pp-colors {
    margin-bottom: 30px;
}

.pp-colors-label {
    display: block;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.pp-color-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.color-variant-btn {
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
    font-size: 14px;
}

.color-variant-btn:hover {
    border-color: rgba(139, 92, 246, 0.5);
    background: rgba(139, 92, 246, 0.1);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.15);
}

.color-variant-btn.selected {
    border-color: #8B5CF6;
    background: rgba(139, 92, 246, 0.15);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

/* Stock Indicator */
.pp-stock {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    padding: 12px 16px;
    background: rgba(255, 107, 107, 0.08);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 12px;
}

.pp-stock-dot {
    width: 10px;
    height: 10px;
    background: #ff6b6b;
    border-radius: 50%;
    animation: pp-pulse 2s infinite;
    flex-shrink: 0;
}

@keyframes pp-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(255, 107, 107, 0); }
}

.pp-stock-text {
    color: #ff6b6b;
    font-weight: 600;
    font-size: 14px;
}

/* Buy Buttons */
.pp-buttons {
    margin-bottom: 40px;
}

.pp-buy-primary {
    display: block;
    width: 100%;
    text-align: center;
    padding: 20px 40px;
    background: linear-gradient(180deg, #fcd34d 0%, #fbbf24 50%, #f59e0b 100%);
    color: #1a1a1a;
    border: none;
    border-radius: 16px;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.4),
                0 0 15px rgba(251, 191, 36, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-family: 'Red Hat Display', sans-serif;
}

.pp-buy-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
    will-change: transform;
}

.pp-buy-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    box-shadow: 0 12px 30px rgba(251, 191, 36, 0.5),
                0 0 20px rgba(251, 191, 36, 0.3);
}

.pp-buy-primary:hover::after {
    transform: translateX(100%);
}

.pp-buy-secondary {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px 40px;
    background: transparent;
    color: #8B5CF6;
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Red Hat Display', sans-serif;
}

.pp-buy-secondary:hover {
    background: rgba(139, 92, 246, 0.12);
    border-color: #8B5CF6;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

.pp-checkout-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Section Cards (Features, Specs, Supported Systems, etc.) */
.pp-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.pp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
}

.pp-card-highlight {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(236, 72, 153, 0.08));
    border-color: rgba(139, 92, 246, 0.25);
}

.pp-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 20px 0;
    font-family: 'Oxanium', sans-serif;
    color: #fff;
}

/* Feature List */
.pp-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pp-feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    gap: 12px;
    align-items: flex-start;
    line-height: 1.5;
}

.pp-feature-list li:last-child {
    border-bottom: none;
}

.pp-feature-icon {
    color: #8B5CF6;
    flex-shrink: 0;
    font-size: 16px;
}

/* Systems Grid */
.pp-systems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

/* Perfect For list */
.pp-card ul {
    margin: 0;
    padding-left: 20px;
    line-height: 1.8;
}

.pp-card ul li {
    color: rgba(255, 255, 255, 0.85);
}

/* Specs Table */
.pp-specs-table {
    width: 100%;
    border-collapse: collapse;
}

.pp-specs-table td {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pp-specs-table tr:last-child td {
    border-bottom: none;
}

.pp-specs-label {
    color: rgba(255, 255, 255, 0.5);
}

.pp-specs-value {
    text-align: right;
    font-weight: 600;
    color: #fff;
}

/* FAQ Section */
.pp-faq {
    margin-top: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pp-faq-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Oxanium', sans-serif;
    color: #fff;
}

.pp-faq-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.pp-faq-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.pp-faq-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #c084fc;
}

.pp-faq-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 15px;
}

/* Cross-sell */
.pp-cross-sell {
    margin-top: 80px;
    text-align: center;
}

.pp-cross-sell h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    font-family: 'Oxanium', sans-serif;
    color: #fff;
}

.pp-cross-sell-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

.pp-cross-sell-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.pp-cross-sell-link {
    display: inline-block;
    padding: 14px 28px;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pp-cross-sell-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    will-change: transform;
}

.pp-cross-sell-link:hover {
    transform: translateY(-2px);
}

.pp-cross-sell-link:hover::after {
    transform: translateX(100%);
}

.pp-cross-sell-primary {
    background: linear-gradient(135deg, #8B5CF6, #6D28D9);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.pp-cross-sell-primary:hover {
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.pp-cross-sell-green {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.pp-cross-sell-green:hover {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.pp-cross-sell-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pp-cross-sell-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

/* ==================
   Responsive Styles
   ================== */

@media (max-width: 968px) {
    .pp-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pp-images {
        position: static;
    }

    .pp-title {
        font-size: 36px;
    }

    .pp-price-current {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .product-page {
        padding: 70px 16px 60px;
    }

    .pp-grid {
        gap: 30px;
    }

    .pp-image-main {
        padding: 24px;
    }

    .pp-title {
        font-size: 30px;
    }

    .pp-subtitle {
        font-size: 17px;
    }

    .pp-price-current {
        font-size: 36px;
    }

    .pp-price-old {
        font-size: 20px;
    }

    .pp-color-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pp-package-row {
        flex-direction: column;
        gap: 12px;
    }

    .pp-package-price {
        font-size: 28px;
    }

    .pp-buy-primary {
        font-size: 18px;
        padding: 18px 24px;
    }

    .pp-buy-secondary {
        font-size: 16px;
        padding: 14px 24px;
    }

    .pp-card {
        padding: 24px;
    }

    .pp-faq-title {
        font-size: 28px;
    }

    .pp-cross-sell h2 {
        font-size: 28px;
    }

    .pp-cross-sell-links {
        flex-direction: column;
        align-items: stretch;
    }

    .pp-cross-sell-link {
        text-align: center;
    }

    .pp-systems-grid {
        grid-template-columns: 1fr;
    }

    .pp-trust-badges {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .pp-trust-badge {
        padding: 10px 6px;
    }

    .pp-trust-badge-icon {
        font-size: 20px;
    }

    .pp-trust-badge-text {
        font-size: 10px;
    }
}

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

    .pp-trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===========================================
   Notify Me Modal
   =========================================== */

.notify-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    padding: 20px;
}

.notify-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.notify-modal {
    background: linear-gradient(180deg, #1e1040 0%, #150a2e 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 24px;
    padding: 40px 32px;
    max-width: 440px;
    width: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(139, 92, 246, 0.15);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.notify-modal-overlay.active .notify-modal {
    transform: scale(1) translateY(0);
}

.notify-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    font-size: 22px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    line-height: 1;
}

.notify-modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.notify-modal-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.notify-modal-title {
    font-size: 28px;
    font-weight: 800;
    font-family: 'Oxanium', sans-serif;
    color: #fff;
    margin: 0 0 10px 0;
}

.notify-modal-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.5;
    margin: 0 0 24px 0;
}

.notify-modal-form {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.notify-modal-input {
    flex: 1;
    padding: 14px 16px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-family: inherit;
}

.notify-modal-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.notify-modal-input:focus {
    border-color: #8B5CF6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.notify-modal-submit {
    padding: 14px 24px;
    background: linear-gradient(135deg, #8B5CF6, #7c3aed);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-family: inherit;
}

.notify-modal-submit:hover:not(:disabled) {
    background: linear-gradient(135deg, #7c3aed, #6D28D9);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    transform: translateY(-1px);
}

.notify-modal-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.notify-modal-status {
    font-size: 14px;
    min-height: 20px;
    margin: 0 0 8px 0;
    transition: color 0.2s ease;
}

.notify-modal-success {
    color: #10b981;
    font-weight: 600;
}

.notify-modal-error {
    color: #ef4444;
    font-weight: 600;
}

.notify-modal-privacy {
    color: rgba(255, 255, 255, 0.35);
    font-size: 12px;
    margin: 0;
}

@media (max-width: 480px) {
    .notify-modal {
        padding: 32px 20px;
    }

    .notify-modal-form {
        flex-direction: column;
    }

    .notify-modal-submit {
        padding: 14px;
    }

    .notify-modal-title {
        font-size: 24px;
    }
}
