@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');

:root {
    --g4mse-bg-primary: #0a0e17;
    --g4mse-bg-secondary: #111827;
    --g4mse-bg-card: #151c2c;
    --g4mse-bg-card-hover: #1a2338;
    --g4mse-accent-cyan: #00d4ff;
    --g4mse-accent-blue: #3a7bd5;
    --g4mse-accent-purple: #7c3aed;
    --g4mse-accent-gold: #f59e0b;
    --g4mse-accent-emerald: #10b981;
    --g4mse-text-primary: #e2e8f0;
    --g4mse-text-secondary: #94a3b8;
    --g4mse-text-muted: #64748b;
    --g4mse-border-color: rgba(0, 212, 255, 0.15);
    --g4mse-glow-cyan: 0 0 20px rgba(0, 212, 255, 0.3);
    --g4mse-glow-strong: 0 0 40px rgba(0, 212, 255, 0.5);
}

/* ===========================
   SYSTEM CARD — Store Design
   =========================== */
.g4mse-system-card {
    background: linear-gradient(160deg, #121929 0%, #0c1320 100%);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.g4mse-system-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--g4mse-accent-cyan) 35%, var(--g4mse-accent-purple) 65%, transparent 100%);
    background-size: 300% 100%;
    animation: g4mseShimmerLine 4s linear infinite;
    z-index: 2;
    opacity: 0.65;
}

@keyframes g4mseShimmerLine {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.g4mse-system-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45), 0 0 40px rgba(0, 212, 255, 0.1);
}

/* ---- Media (image section) ---- */
.g4mse-card-media {
    position: relative;
    width: 100%;
    height: 205px;
    overflow: hidden;
    background: #080d16;
    flex-shrink: 0;
}

.g4mse-card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #080d16;
    transition: transform 0.55s ease;
    cursor: pointer;
}

.g4mse-system-card:hover .g4mse-card-image {
    transform: scale(1.07);
}

.g4mse-card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.04) 30%, rgba(8,13,22,0.9) 100%);
    pointer-events: none;
    z-index: 1;
}

.g4mse-card-media-bar {
    position: absolute;
    bottom: 10px;
    left: 12px; right: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}

.g4mse-card-version {
    display: inline-flex;
    align-items: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.62em;
    font-weight: 700;
    color: var(--g4mse-accent-cyan);
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(0, 212, 255, 0.35);
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
    backdrop-filter: blur(8px);
}

.g4mse-gallery-count {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.72em;
    color: var(--g4mse-text-secondary);
    font-weight: 600;
    backdrop-filter: blur(6px);
    cursor: pointer;
}

.g4mse-video-indicator {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
    border: 2px solid var(--g4mse-accent-cyan);
    color: var(--g4mse-accent-cyan);
    font-size: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.g4mse-video-indicator:hover {
    background: rgba(0, 212, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    transform: translate(-50%, -50%) scale(1.1);
}

/* ---- Badge ---- */
.g4mse-card-badge {
    position: absolute;
    top: 12px; right: 12px;
    padding: 5px 12px;
    border-radius: 6px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.6em;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 5;
    backdrop-filter: blur(10px);
}

.g4mse-card-badge.badge-popular {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.45);
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.2);
}

.g4mse-card-badge.badge-new {
    background: rgba(0, 212, 255, 0.12);
    color: var(--g4mse-accent-cyan);
    border: 1px solid rgba(0, 212, 255, 0.4);
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.15);
}

.g4mse-card-badge.badge-premium {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.25), rgba(0, 212, 255, 0.1));
    color: #c4b5fd;
    border: 1px solid rgba(124, 58, 237, 0.45);
    box-shadow: 0 0 12px rgba(124, 58, 237, 0.2);
}

/* ---- Content ---- */
.g4mse-card-content {
    padding: 18px 20px 8px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.g4mse-card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.05em;
    font-weight: 700;
    color: var(--g4mse-text-primary);
    margin: 0 0 14px 0;
    line-height: 1.3;
}

.g4mse-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.g4mse-card-features li {
    padding: 6px 0;
    font-size: 0.875em;
    color: var(--g4mse-text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 9px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    line-height: 1.4;
}

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

.g4mse-card-features li::before {
    content: '';
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    margin-top: 1px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='7' fill='none' stroke='%2300d4ff' stroke-width='1.5'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='%2300d4ff' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* ---- Footer ---- */
.g4mse-card-footer {
    padding: 14px 20px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.2);
    margin-top: auto;
}

.g4mse-price-box {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.g4mse-price-main {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.75em;
    font-weight: 900;
    color: var(--g4mse-accent-cyan);
    line-height: 1;
    letter-spacing: -0.5px;
}

.g4mse-price-install {
    font-size: 0.8em;
    color: var(--g4mse-accent-emerald);
    font-weight: 500;
}

.g4mse-card-actions {
    display: flex;
}

.g4mse-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 10px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    white-space: nowrap;
}

.g4mse-btn-buy {
    width: 100%;
    background: linear-gradient(100deg, #00b8d9 0%, #0070f3 55%, #7c3aed 100%);
    background-size: 200% 100%;
    background-position: 0% 0%;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75em;
    font-weight: 700;
    letter-spacing: 2px;
    box-shadow: 0 6px 28px rgba(0, 112, 243, 0.35);
    position: relative;
    overflow: hidden;
    transition: background-position 0.4s ease, box-shadow 0.3s ease, transform 0.25s ease;
}

.g4mse-btn-buy::after {
    content: '';
    position: absolute;
    top: -50%; left: -60%;
    width: 35%; height: 200%;
    background: rgba(255, 255, 255, 0.12);
    transform: skewX(-22deg);
    transition: left 0.5s ease;
    pointer-events: none;
}

.g4mse-btn-buy:hover {
    background-position: 100% 0%;
    box-shadow: 0 10px 40px rgba(0, 112, 243, 0.5);
    transform: translateY(-2px);
}

.g4mse-btn-buy:hover::after {
    left: 130%;
}

/* Grid Layouts */
.g4mse-systems-grid {
    display: grid;
    gap: 30px;
}

/* Staggered Animation for Grid */
.g4mse-systems-grid .g4mse-system-card {
    animation-delay: calc(var(--g4mse-card-index, 0) * 0.1s);
}

.g4mse-systems-grid .g4mse-system-card:nth-child(1) { --g4mse-card-index: 0; }
.g4mse-systems-grid .g4mse-system-card:nth-child(2) { --g4mse-card-index: 1; }
.g4mse-systems-grid .g4mse-system-card:nth-child(3) { --g4mse-card-index: 2; }
.g4mse-systems-grid .g4mse-system-card:nth-child(4) { --g4mse-card-index: 3; }
.g4mse-systems-grid .g4mse-system-card:nth-child(5) { --g4mse-card-index: 4; }
.g4mse-systems-grid .g4mse-system-card:nth-child(6) { --g4mse-card-index: 5; }
.g4mse-systems-grid .g4mse-system-card:nth-child(7) { --g4mse-card-index: 6; }
.g4mse-systems-grid .g4mse-system-card:nth-child(8) { --g4mse-card-index: 7; }
.g4mse-systems-grid .g4mse-system-card:nth-child(9) { --g4mse-card-index: 8; }
.g4mse-systems-grid .g4mse-system-card:nth-child(10) { --g4mse-card-index: 9; }
.g4mse-systems-grid .g4mse-system-card:nth-child(11) { --g4mse-card-index: 10; }
.g4mse-systems-grid .g4mse-system-card:nth-child(12) { --g4mse-card-index: 11; }

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

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

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

.g4mse-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
    .g4mse-grid-3,
    .g4mse-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .g4mse-grid-2,
    .g4mse-grid-3,
    .g4mse-grid-4 {
        grid-template-columns: 1fr;
    }

    .g4mse-card-media {
        height: 180px;
    }
}

/* Carousel */
.g4mse-carousel {
    position: relative;
    overflow: hidden;
}

.g4mse-carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.g4mse-carousel-slide {
    flex: 0 0 calc(100% / 3);
    padding: 0 5px;
}

.g4mse-carousel-prev,
.g4mse-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--g4mse-accent-cyan);
    color: var(--g4mse-accent-cyan);
    font-size: 1.5em;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.g4mse-carousel-prev {
    left: -25px;
}

.g4mse-carousel-next {
    right: -25px;
}

.g4mse-carousel-prev:hover,
.g4mse-carousel-next:hover {
    background: rgba(0, 212, 255, 0.3);
    box-shadow: var(--g4mse-glow-cyan);
}

/* Carousel Slides Visible */
.g4mse-carousel[data-slides="1"] .g4mse-carousel-slide {
    flex: 0 0 100%;
}

.g4mse-carousel[data-slides="2"] .g4mse-carousel-slide {
    flex: 0 0 calc(50% - 15px);
}

.g4mse-carousel[data-slides="3"] .g4mse-carousel-slide {
    flex: 0 0 calc(33.333% - 20px);
}

.g4mse-carousel[data-slides="4"] .g4mse-carousel-slide {
    flex: 0 0 calc(25% - 22.5px);
}

@media (max-width: 1024px) {
    .g4mse-carousel[data-slides="3"] .g4mse-carousel-slide,
    .g4mse-carousel[data-slides="4"] .g4mse-carousel-slide {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .g4mse-carousel[data-slides="2"] .g4mse-carousel-slide,
    .g4mse-carousel[data-slides="3"] .g4mse-carousel-slide,
    .g4mse-carousel[data-slides="4"] .g4mse-carousel-slide {
        flex: 0 0 100%;
    }

    .g4mse-carousel-prev {
        left: 10px;
    }

    .g4mse-carousel-next {
        right: 10px;
    }
}

/* Lightbox */
.g4mse-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;
    backdrop-filter: blur(20px);
}

.g4mse-lightbox.active {
    display: flex;
}

.g4mse-lightbox-content {
    position: relative;
    max-width: 95vw;
    max-height: 90vh;
}

.g4mse-lightbox-content img {
    max-width: 95vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 60px rgba(0, 212, 255, 0.2);
}

.g4mse-lightbox-close {
    position: absolute;
    top: -45px; right: 0;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--g4mse-accent-cyan);
    font-size: 1.5em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.g4mse-lightbox-close:hover {
    background: rgba(0, 212, 255, 0.3);
    transform: rotate(90deg);
}

/* Video Modal */
.g4mse-video-modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
}

.g4mse-video-modal.active {
    display: flex;
}

.g4mse-video-modal-inner {
    position: relative;
    width: 90%;
    max-width: 900px;
}

.g4mse-video-modal-inner iframe,
.g4mse-video-modal-inner video {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    border: 1px solid var(--g4mse-border-color);
}

.g4mse-video-modal-close {
    position: absolute;
    top: -45px; right: 0;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--g4mse-accent-cyan);
    font-size: 1.5em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.g4mse-video-modal-close:hover {
    background: rgba(0, 212, 255, 0.3);
    transform: rotate(90deg);
}

/* Glass Style */
.g4mse-style-glass {
    background: rgba(21, 28, 44, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

/* Minimal Style */
.g4mse-style-minimal {
    background: var(--g4mse-bg-secondary);
    border: none;
    border-radius: 12px;
}

.g4mse-style-minimal::before {
    display: none;
}

/* Neon Cyberpunk Style */
.g4mse-style-neon {
    background: linear-gradient(135deg, rgba(21, 28, 44, 0.9), rgba(10, 14, 23, 0.95));
    border: 2px solid var(--g4mse-accent-cyan);
    box-shadow:
        0 0 10px var(--g4mse-accent-cyan),
        0 0 20px var(--g4mse-accent-cyan),
        0 0 40px rgba(0, 212, 255, 0.3),
        inset 0 0 20px rgba(0, 212, 255, 0.1);
    animation: neonPulse 3s ease-in-out infinite;
}

.g4mse-style-neon::before {
    display: none;
}

@keyframes neonPulse {
    0%, 100% {
        box-shadow:
            0 0 10px var(--g4mse-accent-cyan),
            0 0 20px var(--g4mse-accent-cyan),
            0 0 40px rgba(0, 212, 255, 0.3),
            inset 0 0 20px rgba(0, 212, 255, 0.1);
    }
    50% {
        box-shadow:
            0 0 15px var(--g4mse-accent-cyan),
            0 0 30px var(--g4mse-accent-cyan),
            0 0 60px rgba(0, 212, 255, 0.5),
            inset 0 0 30px rgba(0, 212, 255, 0.2);
    }
}

/* Holographic Style */
.g4mse-style-holographic {
    background: linear-gradient(
        135deg,
        rgba(21, 28, 44, 0.8) 0%,
        rgba(124, 58, 237, 0.1) 25%,
        rgba(0, 212, 255, 0.1) 50%,
        rgba(245, 158, 11, 0.1) 75%,
        rgba(21, 28, 44, 0.8) 100%
    );
    background-size: 400% 400%;
    animation: holographicShift 8s ease infinite;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.g4mse-style-holographic::before {
    display: none;
}

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

/* Crystal Style */
.g4mse-style-crystal {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(30px);
    position: relative;
}

.g4mse-style-crystal::before {
    display: none;
}

.g4mse-style-crystal::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: crystalShine 4s ease-in-out infinite;
}

@keyframes crystalShine {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

/* Animations — triggered by JS (.g4mse-anim-ready added via IntersectionObserver) */
@keyframes g4mseFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes g4mseSlideLeft {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes g4mseZoomIn {
    from { opacity: 0; transform: scale(0.8); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes g4mseFlip {
    from { opacity: 0; transform: perspective(1000px) rotateY(-90deg); }
    to   { opacity: 1; transform: perspective(1000px) rotateY(0deg); }
}
@keyframes g4mseRotate {
    from { opacity: 0; transform: rotate(-180deg) scale(0); }
    to   { opacity: 1; transform: rotate(0deg) scale(1); }
}

.g4mse-anim-ready[data-animation="fade-up"]   { animation: g4mseFadeUp   0.6s ease both; }
.g4mse-anim-ready[data-animation="slide-left"] { animation: g4mseSlideLeft 0.6s ease both; }
.g4mse-anim-ready[data-animation="zoom-in"]    { animation: g4mseZoomIn   0.6s ease both; }
.g4mse-anim-ready[data-animation="flip"]       { animation: g4mseFlip     0.8s ease both; }
.g4mse-anim-ready[data-animation="rotate"]     { animation: g4mseRotate   0.8s ease both; }

/* Hover Effects */
.g4mse-hover-lift:hover {
    transform: translateY(-10px);
}

.g4mse-hover-glow:hover {
    box-shadow: 0 20px 60px var(--g4mse-glow-strong);
}

.g4mse-hover-scale:hover {
    transform: scale(1.05);
}

.g4mse-hover-border-glow:hover {
    border-color: var(--g4mse-accent-cyan);
    box-shadow: 0 0 20px var(--g4mse-accent-cyan), inset 0 0 20px rgba(0, 212, 255, 0.1);
}

.g4mse-hover-parallax:hover .g4mse-card-image {
    transform: scale(1.1);
}

/* ===========================
   PURCHASE MODAL
   =========================== */

.g4mse-purchase-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.g4mse-purchase-modal.active {
    display: flex;
}

.g4mse-purchase-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    animation: g4mseFadeIn 0.3s ease;
}

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

.g4mse-purchase-modal-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 580px;
    background: linear-gradient(135deg, #111827 0%, #0a0e17 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(0, 212, 255, 0.05),
        0 40px 80px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(0, 212, 255, 0.1);
    animation: g4mseModalIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes g4mseModalIn {
    from { opacity: 0; transform: scale(0.7) translateY(30px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Modal Top Accent Line */
.g4mse-purchase-modal-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #7c3aed, #00d4ff);
    background-size: 200% 100%;
    animation: g4mseShimmerLine 3s linear infinite;
    z-index: 2;
}

/* Modal Header */
.g4mse-pm-header {
    padding: 30px 30px 20px;
    position: relative;
}

.g4mse-pm-close {
    position: absolute;
    top: 20px; right: 20px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 1.1em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.g4mse-pm-close:hover {
    background: rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.4);
    color: #00d4ff;
    transform: rotate(90deg);
}

.g4mse-pm-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65em;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #00d4ff;
    margin-bottom: 10px;
    opacity: 0.7;
}

.g4mse-pm-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4em;
    font-weight: 700;
    color: #e2e8f0;
    line-height: 1.3;
    margin: 0;
    padding-right: 40px;
}

/* Step Indicator */
.g4mse-pm-steps {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0 30px;
    margin-bottom: 20px;
}

.g4mse-pm-step {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.g4mse-pm-step-num {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.2);
    color: #64748b;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7em;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.g4mse-pm-step.active .g4mse-pm-step-num {
    background: rgba(0, 212, 255, 0.2);
    border-color: #00d4ff;
    color: #00d4ff;
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.4);
}

.g4mse-pm-step.done .g4mse-pm-step-num {
    background: rgba(16, 185, 129, 0.2);
    border-color: #10b981;
    color: #10b981;
}

.g4mse-pm-step-label {
    font-size: 0.78em;
    color: #64748b;
    font-weight: 600;
    transition: color 0.3s ease;
}

.g4mse-pm-step.active .g4mse-pm-step-label {
    color: #00d4ff;
}

.g4mse-pm-step.done .g4mse-pm-step-label {
    color: #10b981;
}

.g4mse-pm-step-connector {
    flex: 0 0 30px;
    height: 2px;
    background: rgba(0, 212, 255, 0.15);
    margin: 0 8px;
}

/* Options */
.g4mse-pm-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 0 30px 25px;
}

.g4mse-pm-option {
    position: relative;
    border: 2px solid rgba(0, 212, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
    overflow: hidden;
}

.g4mse-pm-option::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.06), rgba(124, 58, 237, 0.04));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.g4mse-pm-option:hover {
    border-color: rgba(0, 212, 255, 0.25);
    transform: translateY(-2px);
}

.g4mse-pm-option:hover::before {
    opacity: 1;
}

.g4mse-pm-option.selected {
    border-color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2), inset 0 0 20px rgba(0, 212, 255, 0.05);
    background: rgba(0, 212, 255, 0.05);
}

.g4mse-pm-option.selected::before {
    opacity: 1;
}

.g4mse-pm-option.selected-install {
    border-color: #7c3aed;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.2), inset 0 0 20px rgba(124, 58, 237, 0.05);
    background: rgba(124, 58, 237, 0.05);
}

.g4mse-pm-option-check {
    position: absolute;
    top: 12px; right: 12px;
    width: 22px; height: 22px;
    border-radius: 50%;
    border: 2px solid rgba(0, 212, 255, 0.3);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7em;
    color: transparent;
    transition: all 0.3s ease;
}

.g4mse-pm-option.selected .g4mse-pm-option-check {
    background: #00d4ff;
    border-color: #00d4ff;
    color: #000;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.g4mse-pm-option.selected-install .g4mse-pm-option-check {
    background: #7c3aed;
    border-color: #7c3aed;
    color: #fff;
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.5);
}

.g4mse-pm-option-icon {
    font-size: 1.8em;
    margin-bottom: 10px;
    display: block;
}

.g4mse-pm-option-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75em;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.g4mse-pm-option.selected .g4mse-pm-option-name {
    color: #00d4ff;
}

.g4mse-pm-option.selected-install .g4mse-pm-option-name {
    color: #a78bfa;
}

.g4mse-pm-option-price {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6em;
    font-weight: 900;
    color: #e2e8f0;
    transition: color 0.3s ease;
}

.g4mse-pm-option.selected .g4mse-pm-option-price {
    color: #00d4ff;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.g4mse-pm-option.selected-install .g4mse-pm-option-price {
    color: #a78bfa;
    text-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
}

.g4mse-pm-option-desc {
    font-size: 0.8em;
    color: #64748b;
    margin-top: 4px;
    transition: color 0.3s ease;
}

.g4mse-pm-option.selected .g4mse-pm-option-desc {
    color: rgba(0, 212, 255, 0.7);
}

.g4mse-pm-option-badge {
    position: absolute;
    bottom: 12px; right: 12px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(0, 212, 255, 0.3));
    border: 1px solid rgba(124, 58, 237, 0.4);
    padding: 2px 8px;
    border-radius: 10px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.6em;
    font-weight: 700;
    letter-spacing: 1px;
    color: #a78bfa;
}

/* Message Preview */
.g4mse-pm-preview {
    margin: 0 30px 25px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    pointer-events: none;
}

.g4mse-pm-preview.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.g4mse-pm-preview-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.62em;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #00d4ff;
    margin-bottom: 12px;
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 6px;
}

.g4mse-pm-preview-bubble {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(37, 211, 102, 0.05));
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 12px 12px 2px 12px;
    padding: 14px 16px;
    font-size: 0.92em;
    color: #e2e8f0;
    line-height: 1.6;
    position: relative;
}

.g4mse-pm-preview-bubble::before {
    content: '';
    position: absolute;
    bottom: -1px; right: -8px;
    width: 0; height: 0;
    border-left: 8px solid rgba(37, 211, 102, 0.2);
    border-bottom: 8px solid transparent;
}

.g4mse-pm-preview-bubble strong {
    color: #00d4ff;
}

.g4mse-pm-preview-bubble .g4mse-highlight-price {
    color: #10b981;
    font-weight: 700;
}

.g4mse-pm-preview-edit {
    display: block;
    width: 100%;
    margin-top: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    color: #94a3b8;
    padding: 10px 14px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9em;
    resize: none;
    outline: none;
    transition: all 0.3s ease;
    min-height: 80px;
}

.g4mse-pm-preview-edit:focus {
    border-color: rgba(0, 212, 255, 0.3);
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.1);
}

/* Send Button */
.g4mse-pm-footer {
    padding: 0 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.g4mse-pm-send-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border: none;
    border-radius: 14px;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9em;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
    opacity: 0.4;
    pointer-events: none;
    position: relative;
    overflow: hidden;
}

.g4mse-pm-send-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.g4mse-pm-send-btn.ready {
    opacity: 1;
    pointer-events: all;
}

.g4mse-pm-send-btn.ready:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(37, 211, 102, 0.5);
}

.g4mse-pm-send-btn.ready:hover::after {
    transform: translateX(100%);
}

.g4mse-pm-send-icon {
    font-size: 1.2em;
}

.g4mse-pm-cancel-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #64748b;
    padding: 10px;
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85em;
    transition: all 0.3s ease;
}

.g4mse-pm-cancel-btn:hover {
    border-color: rgba(255, 255, 255, 0.15);
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 500px) {
    .g4mse-purchase-modal-inner {
        border-radius: 16px;
    }

    .g4mse-pm-options {
        grid-template-columns: 1fr;
    }

    .g4mse-pm-header,
    .g4mse-pm-options,
    .g4mse-pm-preview,
    .g4mse-pm-footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .g4mse-pm-steps {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ===========================
   CAROUSEL DOTS
   =========================== */

/* Carousel Dots */
.g4mse-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.g4mse-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.3);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.g4mse-carousel-dot:hover {
    background: rgba(0, 212, 255, 0.5);
}

.g4mse-carousel-dot.active {
    background: var(--g4mse-accent-cyan);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 10px var(--g4mse-accent-cyan);
    transform: scale(1.2);
}
