/* =====================================================
   PlayGuideZone - NEO Edition
   Premium Dark Theme with Neon Accents & Glassmorphism
   ===================================================== */

/* === RESET & BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1a3e 50%, #0f1a2e 100%);
    background-attachment: fixed;
    letter-spacing: 0.5px;
    min-height: 100vh;
    position: relative;
}

/* Animated background effect */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    right: -50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 255, 240, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(100px, -100px) scale(1.1); }
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, #00fff0 0%, #b500ff 50%, #00ff88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    letter-spacing: 2px;
}

h2 {
    font-size: clamp(2rem, 6vw, 3.2rem);
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1.5rem;
    color: #c0c0d0;
    font-weight: 400;
}

a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--neon-pink);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* === CSS VARIABLES === */
:root {
    --neon-cyan: #00fff0;
    --neon-purple: #b500ff;
    --neon-lime: #00ff88;
    --neon-pink: #ff006e;
    --neon-yellow: #ffd60a;
    --dark-bg: #0a0e27;
    --darker-bg: #050812;
    --card-bg: rgba(20, 30, 60, 0.4);
    --card-border: rgba(0, 255, 240, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

/* === CONTAINER & GRID === */
.inr-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.inr-grid {
    display: grid;
    gap: 2rem;
}

.inr-grid--2 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.inr-grid--3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.inr-flex {
    display: flex;
    gap: 1.5rem;
}

/* === HEADER STYLES === */
.inr-header {
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    color: #ffffff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 255, 240, 0.05);
}

.inr-header__main {
    width: 100%;
}

.inr-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.inr-header__logo {
    font-size: 1.3rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

.inr-header__logo-mark {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    color: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 900;
    box-shadow: 0 0 20px rgba(0, 255, 240, 0.3);
}

.inr-header__nav {
    display: flex !important;
    transform: none !important;
}

.inr-header__nav-list {
    display: flex;
    list-style: none;
    gap: 0;
    flex-direction: row;
}

.inr-header__nav-item {
    border-right: 1px solid var(--glass-border);
}

.inr-header__nav-item:last-child {
    border-right: none;
}

.inr-header__nav-link {
    color: #c0c0d0;
    padding: 12px 20px;
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.inr-header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.inr-header__nav-link:hover {
    color: var(--neon-cyan);
}

.inr-header__nav-link:hover::after {
    width: 30px;
}
.inr-header__menu-toggle{
    display: none;
}
/* ===== MOBILE MENU STYLES ===== */
@media (max-width: 1024px) {
    .inr-header__menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        cursor: pointer;
        padding: 12px 14px;
        z-index: 2001;
    }

    .inr-menu-icon {
        display: flex;
        flex-direction: column;
        gap: 6px;
        width: 28px;
        height: 24px;
    }

    .inr-menu-icon span {
        display: block;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
        border-radius: 2px;
        transition: all 0.35s ease;
        box-shadow: 0 0 12px rgba(0, 255, 240, 0.35);
    }

    .inr-header__menu-toggle.active .inr-menu-icon span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .inr-header__menu-toggle.active .inr-menu-icon span:nth-child(2) {
        opacity: 0;
    }

    .inr-header__menu-toggle.active .inr-menu-icon span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .inr-header__nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(25px);
        border-top: 2px solid var(--neon-cyan);
        flex-direction: column;
        padding: 1.5rem 0;
        transform: translateX(-100%);
        transition: transform 0.35s ease;
        z-index: 2000;
        overflow-y: auto;
    }

    .inr-header__nav.mobile-open {
        left: 0;
    }

    .inr-header__nav-list {
        flex-direction: column;
        gap: 0;
    }

    .inr-header__nav-item {
        border-right: none;
        border-bottom: 1px solid rgba(0, 255, 240, 0.1);
    }

    .inr-header__nav-item:last-child {
        border-bottom: none;
    }

    .inr-header__nav-link {
        padding: 16px 24px;
        font-size: 15px;
        color: #a0a0b0;
        border-left: 4px solid transparent;
        transition: all 0.25s ease;
    }

    .inr-header__nav-link::after {
        display: none;
    }

    .inr-header__nav-link:active {
        background: rgba(0, 255, 240, 0.08);
        color: var(--neon-cyan);
        border-left: 4px solid var(--neon-cyan);
    }
}

@media (max-width: 768px) {

    .inr-header__nav-link {
        padding: 14px 18px;
        font-size: 13px;
        letter-spacing: 0.6px;
    }

    .inr-menu-icon span {
        height: 2.5px;
        width: 26px;
    }
    .inr-header__menu-toggle{
    display: block;
}
}

/* === HERO SECTION === */
.inr-hero {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 255, 240, 0.05) 0%, rgba(181, 0, 255, 0.05) 100%);
    border-bottom: 1px solid var(--glass-border);
}

.inr-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(181, 0, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.inr-hero::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 255, 240, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.inr-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.inr-hero__content h1 {
    background: linear-gradient(135deg, #00fff0 0%, #ff006e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    word-spacing: 100vw;
    line-height: 1.15;
}

.inr-hero__content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #a0a0b0;
    max-width: 500px;
}

.inr-hero__actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.inr-hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 400px;
}

.inr-hero__visual::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, rgba(0, 255, 240, 0.15) 0%, rgba(181, 0, 255, 0.15) 100%);
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    animation: inr-float 6s ease-in-out infinite;
    box-shadow: 0 0 60px rgba(0, 255, 240, 0.3),
                inset 0 0 60px rgba(0, 255, 240, 0.1);
}

.inr-hero__visual::after {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    background: linear-gradient(225deg, rgba(181, 0, 255, 0.1) 0%, rgba(255, 0, 110, 0.1) 100%);
    border: 2px solid var(--neon-purple);
    border-radius: 50%;
    animation: inr-pulse 4s ease-in-out infinite;
    box-shadow: 0 0 40px rgba(181, 0, 255, 0.2),
                inset 0 0 40px rgba(181, 0, 255, 0.05);
}

.inr-hero__visual > div {
    position: relative;
    z-index: 2;
    font-size: 6rem;
    animation: inr-bounce 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(0, 255, 240, 0.4),
                 0 0 60px rgba(181, 0, 255, 0.3),
                 0 0 90px rgba(255, 0, 110, 0.2);
    filter: drop-shadow(0 0 20px rgba(0, 255, 240, 0.3))
            drop-shadow(0 0 40px rgba(181, 0, 255, 0.2));
}

@keyframes inr-float {
    0%, 100% {
        transform: translateY(-10px) rotate(0deg);
    }
    50% {
        transform: translateY(10px) rotate(5deg);
    }
}

@keyframes inr-pulse {
    0%, 100% {
        transform: scale(1) rotate(-5deg);
        box-shadow: 0 0 40px rgba(181, 0, 255, 0.2),
                    inset 0 0 40px rgba(181, 0, 255, 0.05);
    }
    50% {
        transform: scale(1.1) rotate(0deg);
        box-shadow: 0 0 60px rgba(181, 0, 255, 0.35),
                    inset 0 0 60px rgba(181, 0, 255, 0.1);
    }
}

@keyframes inr-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* === BUTTONS === */
.inr-btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.inr-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: 0;
}

.inr-btn:hover::before {
    left: 100%;
}

.inr-btn--primary {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    color: var(--dark-bg);
    box-shadow: 0 0 20px rgba(0, 255, 240, 0.3);
}

.inr-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 255, 240, 0.5);
}

.inr-btn--outline {
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    background: transparent;
}

.inr-btn--outline:hover {
    background: rgba(0, 255, 240, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 240, 0.3);
}

.inr-btn--secondary {
    background: rgba(255, 0, 110, 0.2);
    border: 2px solid var(--neon-pink);
    color: var(--neon-pink);
}

.inr-btn--secondary:hover {
    background: rgba(255, 0, 110, 0.3);
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.3);
}

/* === BADGE === */
.inr-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(0, 255, 240, 0.15);
    color: var(--neon-cyan);
    border: 1px solid rgba(0, 255, 240, 0.3);
}

/* === SECTIONS === */
.inr-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.inr-section:nth-child(odd) {
    background: rgba(181, 0, 255, 0.02);
}

.inr-section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.inr-section-title h2 {
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.inr-section-title p {
    font-size: 1.1rem;
    color: #a0a0b0;
}

/* === FEATURE BOXES === */
.inr-feature-box {
    padding: 2.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.inr-feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.inr-feature-box:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    background: rgba(0, 255, 240, 0.08);
    box-shadow: 0 20px 40px rgba(0, 255, 240, 0.1);
}

.inr-feature-box:hover::before {
    opacity: 1;
}

.inr-feature-box__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    box-shadow: 0 0 20px rgba(0, 255, 240, 0.3);
}

.inr-feature-box h3 {
    color: var(--neon-cyan);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.inr-feature-box p {
    color: #a0a0b0;
}

/* === CARD STYLES === */
.inr-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.inr-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 255, 240, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.inr-card:hover {
    border-color: var(--neon-cyan);
    background: rgba(0, 255, 240, 0.08);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 255, 240, 0.15);
}

.inr-card:hover::before {
    top: 50%;
    left: 50%;
}

.inr-card h3 {
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
}

/* === OPERATOR SHOWCASE === */
.inr-operator-card {
    background: linear-gradient(135deg, rgba(0, 255, 240, 0.08) 0%, rgba(181, 0, 255, 0.08) 100%);
    border: 2px solid var(--neon-cyan);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.inr-operator-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 255, 240, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.inr-operator-card__logo {
    width: 120px;
    height: auto;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.inr-operator-card__rating {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--neon-cyan);
    border-bottom: 1px solid var(--neon-cyan);
}

.inr-operator-card__rating-score {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === FOOTER === */
.inr-footer {
    background: rgba(10, 14, 39, 0.8);
    border-top: 1px solid var(--glass-border);
    color: #c0c0d0;
    padding: 60px 0 20px;
    backdrop-filter: blur(10px);
}

.inr-footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--glass-border);
}

.inr-footer__brand {
    margin-bottom: 1.5rem;
}

.inr-footer__logo {
    font-size: 1.3rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.inr-footer__logo-mark {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    color: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 900;
    box-shadow: 0 0 20px rgba(0, 255, 240, 0.3);
}

.inr-footer__tagline {
    color: #a0a0b0;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.inr-footer__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.inr-footer__links-column h2 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: none;
    -webkit-text-fill-color: unset;
}

.inr-footer__links-column ul {
    list-style: none;
}

.inr-footer__links-column li {
    margin-bottom: 0.8rem;
}

.inr-footer__links-column a {
    color: #a0a0b0;
    font-size: 14px;
    transition: all 0.3s ease;
}

.inr-footer__links-column a:hover {
    color: var(--neon-cyan);
}

.inr-footer-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    flex-wrap: wrap;
    align-items: center;
}

.inr-footer-logos a {
    opacity: 0.7;
    transition: opacity 0.3s;
}

.inr-footer-logos a:hover {
    opacity: 1;
}

.inr-footer-logos img {
    height: 50px;
    width: auto;
}

.inr-footer__responsible {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1) 0%, rgba(181, 0, 255, 0.1) 100%);
    border: 1px solid var(--neon-pink);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    color: #ffc0d0;
}

.inr-footer__responsible h3 {
    color: var(--neon-pink);
    margin-bottom: 1rem;
    background: none;
    -webkit-text-fill-color: unset;
}

.inr-footer__responsible p {
    color: #c0c0d0;
    font-size: 14px;
    margin-bottom: 0.5rem;
}

.inr-footer__responsible p:last-child {
    margin-bottom: 0;
}

.inr-footer__responsible strong {
    color: #ffc0d0;
}

.inr-footer__bottom {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--glass-border);
    color: #707080;
    font-size: 13px;
}

.inr-footer__bottom p {
    margin-bottom: 0.5rem;
    color: #707080;
}

.inr-footer__bottom strong {
    color: #c0c0d0;
}

/* === LEGAL WARNING === */
.inr-legal-warning {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.15) 0%, rgba(181, 0, 255, 0.15) 100%);
    border: 1px solid var(--neon-pink);
    border-radius: 12px;
    padding: 2rem;
    color: #ffc0d0;
    font-size: 14px;
    margin: 2rem 0;
}

/* === RESPONSIVE === */
/* === ADDITIONAL UTILITY CLASSES === */

/* Hero Titles */
.inr-hero-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.inr-hero-subtitle {
    font-size: 1.2rem;
    color: #c0c0d0;
    margin-bottom: 0;
}

/* Wrapper Widths */
.inr-wrapper-1000 {
    max-width: 1000px;
    margin: 0 auto;
}

.inr-wrapper-1200 {
    max-width: 1200px;
    margin: 0 auto;
}

/* Flex Utilities */
.inr-flex-wrap-gap-1 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.inr-flex-gap-1-5 {
    display: flex;
    gap: 1.5rem;
}

/* Grid Utilities */
.inr-grid-2-gap-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.inr-grid-gap-1 {
    display: grid;
    gap: 1rem;
}

/* Tabs & Buttons */
.inr-tab-button {
    padding: 12px 24px;
    border: 2px solid var(--neon-cyan);
    background: transparent;
    color: var(--neon-cyan);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.inr-tab-button.active {
    background: var(--neon-cyan);
    color: var(--dark-bg);
}

.inr-tab-button:hover {
    background: rgba(0, 255, 240, 0.2);
}

/* Content Sections */
.operator-content {
    display: none;
}

.operator-content.active {
    display: block;
}

/* Box Styles */
.inr-box-light {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    margin-top: 1rem;
}

.inr-box-light p {
    margin-bottom: 0.8rem;
}

.inr-box-light p:last-child {
    margin-bottom: 0;
}

/* Typography Utilities */
.inr-span-large-primary {
    color: var(--neon-cyan);
    font-size: 1.3rem;
    font-weight: 700;
}

.inr-p-margin-0-5 {
    margin-bottom: 0.5rem;
}

.inr-h3-primary-no-margin-top {
    color: var(--neon-cyan);
    margin-top: 0;
}

.inr-h4-primary {
    color: var(--neon-cyan);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.inr-h4-primary-margin-top {
    color: var(--neon-cyan);
    font-size: 1.1rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Links */
.inr-link-primary {
    color: var(--neon-cyan);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.inr-link-primary:hover {
    color: var(--neon-pink);
}

.inr-link-inline-block {
    display: inline-block;
}

/* Lists */
.inr-ul-margin-left {
    margin-left: 2rem;
    list-style: disc;
}

.inr-ul-margin-left li {
    margin-bottom: 0.6rem;
    color: #c0c0d0;
}

/* Details/Accordion */
.inr-details-section {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.inr-details-section[open] {
    background: rgba(0, 255, 240, 0.05);
    border-color: var(--neon-cyan);
}

.inr-details-summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--neon-cyan);
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.inr-details-summary:hover {
    color: var(--neon-pink);
}

.inr-details-content {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
}

.inr-details-content p {
    margin-bottom: 1rem;
}

.inr-details-content p:last-child {
    margin-bottom: 0;
}

/* Image Styles */
.inr-logo-img {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.inr-logo-hover:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(0, 255, 240, 0.3));
}

/* Comment/Rating Styles */
.inr-user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-weight: bold;
}

.inr-rating-stars {
    color: var(--neon-yellow);
    font-size: 1.2rem;
}

.inr-review-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.inr-review-card:hover {
    border-color: var(--neon-cyan);
    background: rgba(0, 255, 240, 0.05);
}

/* Tables */
.inr-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.inr-table thead {
    background: rgba(0, 255, 240, 0.1);
}

.inr-table th {
    color: var(--neon-cyan);
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.inr-table td {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--glass-border);
    color: #c0c0d0;
}

.inr-table tbody tr:hover {
    background: rgba(0, 255, 240, 0.05);
}

/* Breadcrumbs */
.inr-breadcrumbs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 14px;
}

.inr-breadcrumbs a {
    color: var(--neon-cyan);
}

.inr-breadcrumbs a:hover {
    color: var(--neon-pink);
}

.inr-breadcrumbs span {
    color: #707080;
}

/* === MODAL STYLES === */

/* Modal Base */
.inr-modal {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 450px;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    z-index: 9999;
    display: none;
    animation: inr-slideUp 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.inr-modal.show {
    display: block;
}

@keyframes inr-slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.inr-modal h4 {
    color: var(--neon-cyan);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    background: none;
    -webkit-text-fill-color: unset;
}

.inr-modal p {
    color: #a0a0b0;
    font-size: 14px;
    margin-bottom: 1.5rem;
}

.inr-modal__options {
    margin-bottom: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.inr-modal__option {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    color: #c0c0d0;
    cursor: pointer;
}

.inr-modal__option input {
    margin-right: 12px;
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: var(--neon-cyan);
}

.inr-modal__option:last-child {
    margin-bottom: 0;
}

.inr-modal__actions {
    display: grid;
    gap: 1rem;
}

.inr-modal__btn {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.inr-modal__btn--primary {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    color: var(--dark-bg);
    box-shadow: 0 0 20px rgba(0, 255, 240, 0.3);
}

.inr-modal__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 255, 240, 0.5);
}

.inr-modal__btn--secondary {
    background: rgba(180, 0, 255, 0.2);
    border: 2px solid var(--neon-purple);
    color: var(--neon-purple);
}

.inr-modal__btn--secondary:hover {
    background: rgba(180, 0, 255, 0.3);
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
}

.inr-modal__btn--outline {
    background: transparent;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
}

.inr-modal__btn--outline:hover {
    background: rgba(0, 255, 240, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 240, 0.3);
}

/* === AGE GATE MODAL === */
.inr-age-gate {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.inr-age-gate.hidden {
    display: none;
}

.inr-age-gate__content {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95) 0%, rgba(10, 14, 39, 0.98) 100%);
    backdrop-filter: blur(15px);
    border: 2px solid var(--neon-cyan);
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 80px rgba(0, 255, 240, 0.2);
    animation: inr-popIn 0.5s ease;
}

@keyframes inr-popIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.inr-age-gate__icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.3);
}

.inr-age-gate__content h3 {
    color: var(--neon-cyan);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: none;
    -webkit-text-fill-color: unset;
}

.inr-age-gate__content p {
    color: #a0a0b0;
    font-size: 15px;
    margin-bottom: 1rem;
}

.inr-age-gate__sub-text {
    color: var(--neon-pink);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 2.5rem !important;
    background: rgba(255, 0, 110, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--neon-pink);
}

.inr-age-gate__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.inr-age-gate__btn {
    padding: 14px 24px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.inr-age-gate__btn--confirm {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-lime));
    color: var(--dark-bg);
    box-shadow: 0 0 20px rgba(0, 255, 240, 0.3);
}

.inr-age-gate__btn--confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 255, 240, 0.5);
}

.inr-age-gate__btn--deny {
    background: transparent;
    border: 2px solid var(--neon-pink);
    color: var(--neon-pink);
}

.inr-age-gate__btn--deny:hover {
    background: rgba(255, 0, 110, 0.1);
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.3);
}

/* === FORM STYLES === */
.inr-form-container {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.8) 0%, rgba(26, 26, 62, 0.8) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.inr-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.inr-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.inr-form-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--neon-cyan);
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.inr-form-input,
.inr-form-textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 255, 240, 0.2);
    border-radius: 8px;
    padding: 1rem 1.2rem;
    font-size: 1rem;
    color: #ffffff;
    font-family: inherit;
    transition: all 0.3s ease;
}

.inr-form-input::placeholder,
.inr-form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.inr-form-input:focus,
.inr-form-textarea:focus {
    outline: none;
    background: rgba(0, 255, 240, 0.08);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 240, 0.2);
}

.inr-form-input:hover:not(:focus),
.inr-form-textarea:hover:not(:focus) {
    border-color: rgba(0, 255, 240, 0.4);
    background: rgba(0, 255, 240, 0.04);
}

.inr-form-textarea {
    resize: vertical;
    min-height: 150px;
    max-height: 350px;
    font-family: 'Courier New', monospace;
}

.inr-form-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    padding: 1rem;
    background: rgba(0, 255, 240, 0.05);
    border: 1px solid rgba(0, 255, 240, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.inr-form-checkbox-wrapper:hover {
    background: rgba(0, 255, 240, 0.08);
    border-color: rgba(0, 255, 240, 0.2);
}

.inr-form-checkbox {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    border: 2px solid var(--neon-cyan);
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.inr-form-checkbox:hover {
    background: rgba(0, 255, 240, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 240, 0.2);
}

.inr-form-checkbox:checked {
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-lime) 100%);
    border-color: var(--neon-lime);
    position: relative;
}

.inr-form-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    font-weight: bold;
    font-size: 14px;
}

.inr-checkbox-text {
    flex: 1;
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

.inr-checkbox-text a {
    color: var(--neon-cyan);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.inr-checkbox-text a:hover {
    color: var(--neon-lime);
    text-shadow: 0 0 10px rgba(0, 255, 240, 0.3);
}

.inr-form-footnote {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-top: 0.5rem;
}

.inr-btn-full {
    width: 100%;
}

/* === RESPONSIVE MODALS === */
@media (max-width: 768px) {
    .inr-modal {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .inr-age-gate__content {
        max-width: 90%;
        padding: 2rem;
    }

    .inr-age-gate__actions {
        grid-template-columns: 1fr;
    }

    .inr-modal__actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .inr-hero {
        padding: 50px 0;
    }

    .inr-hero__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .inr-hero__visual {
        height: 300px;
    }

    .inr-hero__visual::before {
        width: 240px;
        height: 240px;
    }

    .inr-hero__visual::after {
        width: 200px;
        height: 200px;
    }

    .inr-hero__visual > div {
        font-size: 4rem;
    }

    .inr-footer__top {
        grid-template-columns: 1fr;
    }

    .inr-footer__links {
        grid-template-columns: 1fr;
    }

    .inr-button {
        width: 100%;
    }

    .inr-h1-white-center {
        font-size: 1.8rem;
    }

    .inr-h2-center-3rem {
        font-size: 2rem;
    }

    .inr-hero-title {
        font-size: 2rem;
    }

    .inr-grid-2-gap-2 {
        grid-template-columns: 1fr;
    }

    .inr-flex-wrap-gap-1 {
        flex-direction: column;
    }

    .inr-tab-button {
        flex: 1 1 auto;
        min-width: 100px;
    }

    .inr-table {
        font-size: 12px;
    }

    .inr-table th,
    .inr-table td {
        padding: 0.5rem;
    }

    /* Form Mobile Styles */
    .inr-form-container {
        padding: 1.5rem;
    }

    .inr-form {
        gap: 1.5rem;
    }

    .inr-form-input,
    .inr-form-textarea {
        padding: 0.875rem;
        font-size: 16px;
    }

    .inr-form-textarea {
        min-height: 120px;
    }

    .inr-form-checkbox-wrapper {
        gap: 0.75rem;
        padding: 0.75rem;
    }

    .inr-checkbox-text {
        font-size: 0.9rem;
    }
}
