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

/* Nexoranova Minimal Tech Theme (Asus ROG Overhaul) */
body.theme-asus-rog-g-series-launch {
    background: radial-gradient(circle at top center, #091325 0%, #03060c 100%);
    color: #c7d2fe;
    font-family: 'Inter', sans-serif;
}

body.theme-asus-rog-g-series-launch::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(0, 150, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -1;
    pointer-events: none;
    opacity: 0.8;
}

body.theme-asus-rog-g-series-launch h1,
body.theme-asus-rog-g-series-launch h2,
body.theme-asus-rog-g-series-launch h3,
body.theme-asus-rog-g-series-launch .section-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 1px;
    color: #e2e8f0;
    text-shadow: 0 0 15px rgba(125, 211, 252, 0.2);
}

body.theme-asus-rog-g-series-launch .project-hero {
    border-bottom: 1px solid rgba(56, 189, 248, 0.2);
    box-shadow: 0 10px 40px rgba(14, 165, 233, 0.1);
}

/* Base Cards / Info Blocks */
body.theme-asus-rog-g-series-launch .feature-content,
body.theme-asus-rog-g-series-launch .info-block {
    background: rgba(8, 14, 33, 0.5);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.4s ease;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
}

body.theme-asus-rog-g-series-launch .feature-content:hover,
body.theme-asus-rog-g-series-launch .info-block:hover {
    box-shadow: 0 0 25px rgba(56, 189, 248, 0.15), inset 0 0 10px rgba(56, 189, 248, 0.1);
    border-color: rgba(56, 189, 248, 0.6);
}

/* Curved Showcase (The Banners) Fix */
body.theme-asus-rog-g-series-launch .curved-showcase-section {
    perspective: 1200px;
}

body.theme-asus-rog-g-series-launch .showcase-item {
    background: rgba(3, 7, 18, 0.8);
    backdrop-filter: blur(24px);
    border-radius: 16px;
    padding: 6px;
    border: 1px solid rgba(56, 189, 248, 0.15);
    
    /* REMOVED scaling transform transitions here so they DONT CONFLICT with GSAP motionPath */
    transition: border-color 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
}

body.theme-asus-rog-g-series-launch .showcase-item img {
    border-radius: 12px;
    opacity: 0.7;
    filter: contrast(1.1) grayscale(30%);
    
    /* MOVED the hover transform scaling strictly to the image */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, filter 0.4s ease;
}

body.theme-asus-rog-g-series-launch .showcase-item:hover {
    border-color: rgba(56, 189, 248, 0.8);
    box-shadow: 0 0 30px rgba(14, 165, 233, 0.3), inset 0 0 15px rgba(14, 165, 233, 0.15);
    z-index: 100 !important;
}

body.theme-asus-rog-g-series-launch .showcase-item:hover img {
    transform: scale(1.08); /* Scales inward smoothly without teleporting the card */
    opacity: 1;
    filter: contrast(1.1) grayscale(0%) brightness(1.1);
}

body.theme-asus-rog-g-series-launch .showcase-item::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent, rgba(56, 189, 248, 0.2), transparent);
    transform: rotate(45deg) translateY(-100%);
    transition: transform 0.6s ease;
    pointer-events: none;
}

body.theme-asus-rog-g-series-launch .showcase-item:hover::after {
    transform: rotate(45deg) translateY(100%);
}

body.theme-asus-rog-g-series-launch .showcase-item-meta {
    background: linear-gradient(to top, rgba(2, 6, 23, 0.95), transparent);
    color: #bae6fd;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    border-top: none;
    pointer-events: none;
}

/* CTA Buttons */
body.theme-asus-rog-g-series-launch .btn-pill {
    background: transparent;
    color: #38bdf8;
    border: 1px solid #38bdf8;
    border-radius: 4px;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 1rem 2.5rem;
    transition: all 0.3s ease;
}

body.theme-asus-rog-g-series-launch .btn-pill:hover {
    background: rgba(56, 189, 248, 0.1);
    color: #fff;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.3), inset 0 0 10px rgba(56, 189, 248, 0.2);
}

body.theme-asus-rog-g-series-launch .result-card {
    background: rgba(8, 14, 33, 0.4);
    border-left: 2px solid #38bdf8;
    border-radius: 4px;
    padding: 1.5rem;
}

body.theme-asus-rog-g-series-launch .result-num {
    color: #38bdf8;
    text-shadow: 0 0 15px rgba(56, 189, 248, 0.4);
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}
