:root {
    --color-bg-dark: #03030a;
    --color-bg-blue: #090e24;
    --color-accent: #3a86ff;
    --color-accent-glow: #00f2fe;
    --color-danger: #ff0050;
    --color-text: #ffffff;
    --color-text-muted: #a0aab2;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-hover-bg: rgba(255, 255, 255, 0.08);
    --glass-hover-border: rgba(255, 255, 255, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 15px;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Page Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #05050c; }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(0, 242, 254, 0.4), rgba(58, 134, 255, 0.4));
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(0, 242, 254, 0.7); }

::selection {
    background: rgba(0, 242, 254, 0.3);
    color: #fff;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #3a86ff, #00f2fe);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.8);
    z-index: 10001;
    pointer-events: none;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    z-index: 1000;
    border-radius: 20px;
    border: 1px solid transparent;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(5, 8, 20, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: var(--glass-border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 25px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.nav-logo strong {
    color: var(--color-accent-glow);
}

.nav-logo i {
    color: var(--color-accent-glow);
    font-size: 1.4rem;
    filter: drop-shadow(0 0 8px rgba(0, 242, 254, 0.6));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links a:not(.login-btn) {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 10px;
    transition: all 0.3s;
}

.nav-links a:not(.login-btn):hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    padding: 5px 10px;
}

@media (max-width: 900px) {
    .nav-toggle { display: block; }
    
    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        background: rgba(5, 8, 20, 0.95);
        backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: 16px;
        padding: 15px;
        gap: 5px;
    }

    .nav-links.open { display: flex; }
    .nav-links a:not(.login-btn) { text-align: center; padding: 12px; }
    .nav-links .login-btn { justify-content: center; margin-top: 5px; }
}

/* Noise Overlay & Backgrounds */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    background: linear-gradient(135deg, #010103 0%, #05081f 50%, #0a1138 100%);
    background-size: 300% 300%;
    animation: gradientBG 20s ease infinite;
}

.floating-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out alternate;
}

.orb-1 { width: 400px; height: 400px; background: #00f2fe; top: -100px; left: -100px; animation-delay: 0s; }
.orb-2 { width: 500px; height: 500px; background: #ff0050; bottom: -150px; right: -100px; animation-delay: -5s; opacity: 0.2; }
.orb-3 { width: 300px; height: 300px; background: #3a86ff; top: 40%; left: 50%; transform: translate(-50%, -50%); animation-delay: -10s; }

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Highlight */
.highlight {
    color: var(--color-accent-glow);
    text-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
}

.section-title {
    text-align: center;
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, transparent, var(--color-accent-glow), transparent);
    box-shadow: 0 0 12px rgba(0, 242, 254, 0.6);
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 1rem;
    margin-bottom: 45px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    display: grid;
    grid-template-rows: 1fr auto;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 100px 20px 0;
}

.hero-content {
    max-width: 900px;
    width: 100%;
    justify-self: center;
    align-self: center;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    margin-bottom: 25px;
    border-radius: 50px;
    background: rgba(0, 242, 254, 0.06);
    border: 1px solid rgba(0, 242, 254, 0.25);
    color: #cfe9ee;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.1), inset 0 0 15px rgba(0, 242, 254, 0.05);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent-glow);
    box-shadow: 0 0 10px var(--color-accent-glow);
    animation: livePulse 2s infinite;
}

.title-wrapper {
    position: relative;
    margin-bottom: 15px;
}

.title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: 6px;
    
    /* Animated Glowing Sweep Background */
    background: linear-gradient(
        90deg, 
        #a0aab2 0%, 
        #ffffff 15%, 
        #00f2fe 50%, 
        #ffffff 85%, 
        #a0aab2 100%
    );
    background-size: 200% auto;
    
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Drop shadow instead of text shadow to avoid rendering artifacts */
    filter: drop-shadow(0 0 20px rgba(0, 242, 254, 0.4));
    
    animation: shine 4s linear infinite;
}

@keyframes shine {
    to {
        background-position: -200% center;
    }
}

.subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.9rem);
    font-weight: 400;
    margin-bottom: 20px;
    color: #e2e8f0;
    letter-spacing: 2px;
}

.mission {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    max-width: 680px;
    margin: 0 auto 32px auto;
}

.cta-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.glow-btn {
    display: inline-block;
    padding: 13px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 50px;
    background: rgba(0, 242, 254, 0.15);
    border: 1px solid rgba(0, 242, 254, 0.4);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}

.glow-btn.outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.glow-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: all 0.5s ease;
}

.glow-btn:hover {
    background: rgba(0, 242, 254, 0.3);
    border-color: #00f2fe;
    box-shadow: 0 0 30px rgba(0, 242, 254, 0.6), inset 0 0 10px rgba(0, 242, 254, 0.3);
    transform: translateY(-3px);
}

.glow-btn.outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.glow-btn:hover::before {
    left: 100%;
}

/* Scroll Down Indicator */
.scroll-down {
    position: relative;
    justify-self: center;
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--color-text-muted);
    transition: color 0.3s ease;
    z-index: 10;
    flex-shrink: 0;
    animation: scrollDownAppear 1s ease 1.2s both;
}

.scroll-down:hover { color: #00f2fe; }

@keyframes scrollDownAppear {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid currentColor;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.wheel {
    width: 4px;
    height: 6px;
    background-color: currentColor;
    border-radius: 2px;
    margin-top: 6px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

.scroll-down .text { font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; }

/* News & Alerts Section */
.news-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, transparent, rgba(0, 242, 254, 0.03));
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

/* News Grid 5 Columns for News Portal */
.news-grid.five-cols {
    max-width: 1400px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.news-grid.five-cols .news-card {
    border-radius: 16px;
}

.news-grid.five-cols .news-image {
    height: 160px;
}

.news-grid.five-cols .news-content {
    padding: 20px;
}

.news-grid.five-cols .news-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.news-grid.five-cols .news-excerpt {
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.news-grid.five-cols .news-meta {
    font-size: 0.8rem;
    margin-bottom: 10px;
}

/* Article Page Layout */
.article-container {
    max-width: 1000px;
    margin: 40px auto;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    position: relative;
    z-index: 10;
}

.article-top {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 40px;
}

.article-image-wrapper {
    flex: 0 0 400px;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: rgba(0,0,0,0.3);
}

.article-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4rem;
    color: var(--color-text-muted);
}

.article-header-info {
    flex: 1;
}

.article-header-info h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
}

.article-header-info .date {
    color: var(--color-accent-glow);
    font-size: 1rem;
    font-weight: 500;
}

.article-content-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e2e8f0;
    white-space: pre-wrap;
}

/* Report Section */
.report-container.glass-card {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
    padding: 35px 40px;
    border-radius: 24px;
    display: block;
    text-align: left;
}

.report-container form {
    width: 100%;
}

.modern-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.modern-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.modern-form label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modern-form .required {
    color: var(--color-danger);
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.input-with-icon i {
    position: absolute !important;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-accent-glow);
    font-size: 1rem;
    pointer-events: none;
    z-index: 3;
}

.input-with-icon input {
    width: 100%;
    padding: 13px 16px 13px 45px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
}

.modern-form textarea {
    width: 100%;
    padding: 15px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    min-height: 120px;
    resize: vertical;
    transition: all 0.3s;
    box-sizing: border-box;
}

.input-with-icon input:focus, .modern-form textarea:focus {
    border-color: var(--color-accent-glow);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.15);
    outline: none;
    background: rgba(0, 0, 0, 0.5);
}

.file-upload-group {
    margin-bottom: 25px !important;
}

.custom-file-upload {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 20px;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
    transition: all 0.3s;
    color: var(--color-text-muted);
    width: 100%;
}

.custom-file-upload input[type="file"] {
    display: none;
}

.custom-file-upload i {
    font-size: 1.4rem;
    color: var(--color-accent-glow);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.custom-file-upload span {
    font-size: 0.9rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

.custom-file-upload:hover {
    border-color: var(--color-accent-glow);
    background: rgba(0, 242, 254, 0.05);
    color: #fff;
}

.custom-file-upload:hover i {
    transform: translateY(-4px);
}

.submit-full-btn {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.form-msg {
    margin-bottom: 20px;
    padding: 13px 18px;
    border-radius: 12px;
    font-weight: 500;
    text-align: center;
}

/* Custom form validation */
.form-toast {
    position: fixed;
    top: 88px;
    left: 50%;
    z-index: 10050;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: min(440px, calc(100vw - 32px));
    padding: 14px 20px;
    border-radius: 14px;
    background: rgba(12, 8, 18, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 0, 80, 0.35);
    box-shadow: 0 14px 45px rgba(255, 0, 80, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.45;
    opacity: 0;
    transform: translateX(-50%) translateY(-14px);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.form-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.form-toast i {
    color: var(--color-danger);
    font-size: 1.15rem;
    flex-shrink: 0;
}

.form-toast--success {
    border-color: rgba(0, 255, 128, 0.35);
    box-shadow: 0 14px 45px rgba(0, 255, 128, 0.1);
}

.form-toast--success i {
    color: #00ff80;
}

.field-hint {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 8px;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255, 0, 80, 0.07);
    border: 1px solid rgba(255, 0, 80, 0.22);
    color: #ffc8d6;
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.45;
    animation: fieldHintIn 0.28s ease;
}

.field-hint i {
    color: var(--color-danger);
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 0.78rem;
}

@keyframes fieldHintIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

.field-invalid {
    border-color: rgba(255, 0, 80, 0.55) !important;
    box-shadow: 0 0 0 3px rgba(255, 0, 80, 0.12) !important;
}

.login-form .field-invalid:focus {
    border-color: rgba(255, 0, 80, 0.65) !important;
    box-shadow: 0 0 0 3px rgba(255, 0, 80, 0.15) !important;
}

.news-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
}

.news-card:hover {
    transform: translateY(-10px);
}

.news-image {
    width: 100%;
    height: 200px;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--glass-border);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: var(--color-text-muted);
    background: linear-gradient(45deg, rgba(255,255,255,0.02), rgba(255,255,255,0.05));
}

.image-placeholder.large {
    height: 250px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    font-size: 1.5rem;
}

.image-placeholder.chat {
    height: 300px;
    border-radius: 12px;
    border: 1px dashed var(--color-accent-glow);
    font-size: 1.2rem;
}

.news-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-badge.danger {
    background: rgba(255, 0, 80, 0.2);
    color: var(--color-danger);
    border: 1px solid rgba(255, 0, 80, 0.5);
    box-shadow: 0 0 15px rgba(255, 0, 80, 0.3);
}

.news-badge.warning {
    background: rgba(255, 170, 0, 0.2);
    color: #ffaa00;
    border: 1px solid rgba(255, 170, 0, 0.5);
}

.news-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    font-size: 0.9rem;
    color: var(--color-accent-glow);
    margin-bottom: 15px;
}

.news-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #fff;
}

.news-excerpt {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.news-read-more {
    background: transparent;
    border: none;
    color: var(--color-accent-glow);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    transition: transform 0.3s;
    font-family: 'Poppins', sans-serif;
}

.news-card:hover .news-read-more {
    transform: translateX(10px);
}

/* Modal (Popup) Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 0;
    border-radius: 24px;
    position: relative;
    transform: translateY(50px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-overlay .close-modal {
    position: absolute !important;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
    z-index: 20;
    margin: 0;
}

.close-modal:hover {
    background: rgba(255, 0, 80, 0.8);
    border-color: #ff0050;
    transform: rotate(90deg);
}

.modal-header {
    padding: 40px 40px 30px 40px;
    border-bottom: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.2);
}

.modal-header .news-badge {
    position: static;
    display: inline-block;
    margin-bottom: 15px;
}

.modal-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #fff;
}

.modal-header .date {
    color: var(--color-text-muted);
}

.modal-body {
    padding: 40px;
}

.modal-split {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.modal-image-col {
    flex: 1;
}

.image-caption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-top: 10px;
    font-style: italic;
}

.modal-text-col {
    flex: 2;
}

.modal-body h4 {
    font-size: 1.3rem;
    color: var(--color-accent-glow);
    margin-bottom: 15px;
    margin-top: 25px;
}

.modal-body h4:first-child {
    margin-top: 0;
}

.modal-body p {
    color: #e2e8f0;
    line-height: 1.8;
    margin-bottom: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.modal-action {
    margin-top: 40px;
    padding: 25px;
    background: rgba(255, 0, 80, 0.1);
    border-left: 4px solid var(--color-danger);
    border-radius: 8px;
}

.modal-action p {
    margin: 0;
    color: #fff;
}

/* Custom Scrollbar for Modal */
.modal-content::-webkit-scrollbar {
    width: 8px;
}
.modal-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0 24px 24px 0;
}
.modal-content::-webkit-scrollbar-thumb {
    background: rgba(0, 242, 254, 0.3);
    border-radius: 10px;
}
.modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 242, 254, 0.6);
}

/* Informational Sections */
.info-section,
.social-section,
.stats-section,
.video-section,
section[id] {
    scroll-margin-top: 100px;
}

/* Featured YouTube Section */
.video-section {
    padding: 80px 20px;
    position: relative;
    z-index: 10;
    background: linear-gradient(180deg, transparent, rgba(255, 0, 0, 0.03) 50%, transparent);
}

.video-title-icon {
    color: #ff0000;
    margin-right: 10px;
    filter: drop-shadow(0 0 12px rgba(255, 0, 0, 0.45));
}

.video-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-feature {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-player.glass-card {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 16 / 9;
    position: relative;
    display: block;
    align-items: stretch;
    border-color: rgba(255, 0, 0, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 40px rgba(255, 0, 0, 0.08);
}

.video-player iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.video-facade {
    width: 100%;
    height: 100%;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    position: relative;
    background: #000;
    display: block;
}

.video-facade img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.88;
    transition: opacity 0.3s, transform 0.4s;
}

.video-facade:hover img {
    opacity: 1;
    transform: scale(1.02);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    padding-left: 4px;
    box-shadow: 0 0 35px rgba(255, 0, 0, 0.55);
    transition: transform 0.3s, box-shadow 0.3s;
    pointer-events: none;
}

.video-facade:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 0 50px rgba(255, 0, 0, 0.75);
}

.video-loading,
.video-placeholder {
    width: 100%;
    height: 100%;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--color-text-muted);
    text-align: center;
    padding: 30px;
    box-sizing: border-box;
}

.video-loading i,
.video-placeholder i {
    font-size: 2rem;
    color: #ff0000;
}

.video-placeholder strong {
    color: #fff;
}

.video-meta {
    text-align: center;
    margin-top: 28px;
}

.video-meta h3 {
    font-size: 1.35rem;
    margin: 0 0 18px 0;
    font-weight: 600;
}

.video-channel-btn {
    border-color: rgba(255, 0, 0, 0.45) !important;
    color: #ff6b6b !important;
}

.video-channel-btn:hover {
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.25);
}

.info-section {
    padding: 70px 20px;
    position: relative;
    z-index: 10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-section:nth-child(even) {
    background: linear-gradient(180deg, transparent, rgba(0, 242, 254, 0.02) 50%, transparent);
}

.info-content {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 35px 40px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.info-content p {
    margin-bottom: 20px;
}
.info-content p:last-child {
    margin-bottom: 0;
}

/* Features Grid (Red Flags) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 40px 30px;
    text-align: center;
    border-top: 2px solid transparent;
    transition: all 0.4s ease;
}

.feature-card:hover {
    border-top-color: var(--color-danger);
    box-shadow: 0 15px 40px rgba(255, 0, 80, 0.18);
    transform: translateY(-8px);
    background: var(--glass-hover-bg);
}

.feature-card:hover .feature-icon {
    transform: scale(1.15);
}

.feature-icon {
    font-size: 3rem;
    color: var(--color-danger);
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(255, 0, 80, 0.4);
    transition: transform 0.4s ease;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* Stats Section */
.stats-section {
    padding: 50px 20px;
    background: linear-gradient(180deg, rgba(0, 242, 254, 0.05), transparent);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 0, 80, 0.1);
    border: 1px solid rgba(255, 0, 80, 0.3);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-danger);
    text-transform: uppercase;
    vertical-align: middle;
    margin-left: 10px;
    box-shadow: 0 0 15px rgba(255, 0, 80, 0.2);
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-danger);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-danger);
    animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
    0% { transform: scale(0.95); opacity: 0.5; box-shadow: 0 0 0 0 rgba(255, 0, 80, 0.7); }
    50% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 0 8px rgba(255, 0, 80, 0); }
    100% { transform: scale(0.95); opacity: 0.5; box-shadow: 0 0 0 0 rgba(255, 0, 80, 0); }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-card {
    padding: 35px 30px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 242, 254, 0.35);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(0, 242, 254, 0.12);
}

.stat-icon {
    font-size: 2rem;
    color: var(--color-accent-glow);
    margin-bottom: 12px;
    filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.5));
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.stat-text {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-sub {
    margin-top: 8px;
    font-size: 0.78rem;
    color: var(--color-accent-glow);
    letter-spacing: 0.5px;
}

.stat-card.visit-pulse {
    animation: visitPulse 0.9s ease;
    border-color: rgba(0, 242, 254, 0.55) !important;
    box-shadow: 0 0 30px rgba(0, 242, 254, 0.25);
}

@keyframes visitPulse {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-6px) scale(1.02); }
}

.visit-toast {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 420px;
    margin: 0 auto 25px auto;
    padding: 12px 20px;
    border-radius: 50px;
    background: rgba(0, 242, 254, 0.12);
    border: 1px solid rgba(0, 242, 254, 0.35);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    box-shadow: 0 8px 25px rgba(0, 242, 254, 0.15);
}

.visit-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.visit-toast i {
    color: var(--color-accent-glow);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-align: left;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question i {
    color: var(--color-accent-glow);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 25px 25px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Solutions List */
.solutions-container {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 35px 40px;
}

.solutions-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.solutions-list li {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.solutions-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.solutions-list i {
    font-size: 2rem;
    color: var(--color-accent-glow);
    background: rgba(0, 242, 254, 0.1);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    flex-shrink: 0;
}

.solutions-list h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #fff;
}

.solutions-list p {
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Social Media Section */
.social-section {
    padding: 80px 20px;
    position: relative;
    z-index: 10;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    justify-items: center;
}

/* Glassmorphism Cards */
.glass-card {
    width: 100%;
    max-width: 320px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 45px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(
        800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 255, 255, 0.06),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 0;
    pointer-events: none;
}

.social-section .glass-card:hover .card-glow {
    opacity: 1;
}

.glass-card > .icon,
.glass-card > h3,
.glass-card > p {
    position: relative;
    z-index: 1;
}

.social-section .glass-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: var(--glass-hover-bg);
    border-color: var(--glass-hover-border);
}

.icon {
    display: block;
    line-height: 1;
    font-size: 3.8rem;
    margin-bottom: 20px;
    background: none;
    transition: all 0.5s ease;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.1));
}

.social-section .glass-card:hover .icon {
    transform: scale(1.2) translateY(-5px);
}

/* Brand Colors & Heavy Glows */
.social-section .glass-card:hover:nth-child(1) { box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 40px rgba(225, 48, 108, 0.3); border-color: rgba(225, 48, 108, 0.5); }
.social-section .glass-card:hover:nth-child(1) .icon { color: #E1306C; filter: drop-shadow(0 0 20px rgba(225, 48, 108, 0.8)); }

.social-section .glass-card.social-tiktok:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 40px rgba(0, 242, 254, 0.3);
    border-color: rgba(0, 242, 254, 0.5);
}

.social-section .glass-card:hover .icon.tiktok {
    color: #fff;
    filter: drop-shadow(3px 3px 0 #ff0050) drop-shadow(-3px -3px 0 #00f2fe);
}

.social-section .glass-card:hover:nth-child(5) { box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 40px rgba(145, 70, 255, 0.3); border-color: rgba(145, 70, 255, 0.5); }
.social-section .glass-card:hover:nth-child(5) .icon { color: #9146FF; filter: drop-shadow(0 0 20px rgba(145, 70, 255, 0.8)); }

.social-section .glass-card:hover:nth-child(6) { box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 40px rgba(88, 101, 242, 0.3); border-color: rgba(88, 101, 242, 0.5); }
.social-section .glass-card:hover:nth-child(6) .icon { color: #5865F2; filter: drop-shadow(0 0 20px rgba(88, 101, 242, 0.8)); }

.social-section .glass-card:hover:nth-child(7) { box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 40px rgba(255, 0, 0, 0.3); border-color: rgba(255, 0, 0, 0.5); }
.social-section .glass-card:hover:nth-child(7) .icon { color: #FF0000; filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.8)); }

.social-section .glass-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.social-section .glass-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    text-align: center;
    transition: color 0.3s;
}

.social-section .glass-card p:empty {
    visibility: hidden;
    min-height: 1.4em;
}

.social-section .glass-card:hover p { color: #fff; }

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.55);
    border-top: 1px solid var(--glass-border);
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.4fr;
    gap: 50px;
    padding: 60px 20px 40px 20px;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-accent-glow);
    border-radius: 2px;
}

.footer-col a:not(.nav-logo) {
    display: block;
    color: var(--color-text-muted);
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.footer-col a:not(.nav-logo):hover {
    color: var(--color-accent-glow);
    transform: translateX(5px);
}

.footer-brand .nav-logo {
    margin-bottom: 18px;
    font-size: 1.4rem;
}

.footer-brand p {
    color: var(--color-text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
    max-width: 320px;
}

.footer-help {
    color: var(--color-text-muted);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-help i {
    color: var(--color-accent-glow);
    margin-right: 8px;
    width: 18px;
}

.footer-help strong { color: #fff; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 22px 20px;
    text-align: center;
}

.footer-bottom p { color: var(--color-text-muted); font-size: 0.9rem; }

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
    .footer-brand .nav-logo { justify-content: center; }
    .footer-brand p { margin: 0 auto; }
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0) scale(1);
}

.fade-bottom { transform: translateY(50px); }
.fade-up { transform: translateY(100px); }
.fade-in { transform: scale(0.9); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Floating Action Button */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 15px;
}

.fab-tooltip {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 12px 20px;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.fab-container.active .fab-tooltip {
    opacity: 1;
    transform: translateX(0);
}

.fab-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00f2fe, #3a86ff);
    color: #fff;
    border: none;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 242, 254, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fab-button:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 8px 25px rgba(0, 242, 254, 0.6);
}

.fab-container.active .fab-button {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 242, 254, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(0, 242, 254, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 242, 254, 0); }
}

/* Login Button & Modal */
.login-btn {
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.3);
    color: var(--color-text);
    padding: 9px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    margin-left: 10px;
}

.login-btn:hover {
    background: rgba(0, 242, 254, 0.15);
    border-color: rgba(0, 242, 254, 0.4);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
    color: #fff;
}

.login-btn i {
    color: var(--color-accent-glow);
}

.login-modal-content {
    max-width: 420px !important;
    text-align: center;
    padding: 40px !important;
}

.login-modal-content .modal-header {
    background: transparent !important;
    border-bottom: none !important;
    padding: 0 0 20px 0 !important;
}

.login-modal-content .modal-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
    letter-spacing: 1px;
}

.login-modal-content .modal-header p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.login-modal-content .modal-body {
    padding: 0 !important;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 8px;
    position: relative;
}

.form-group label {
    font-size: 0.85rem;
    color: #a0aab2;
    margin-left: 5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-form .form-group input {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 15px 20px;
    color: #fff;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.login-form .form-group input:focus {
    border-color: var(--color-accent-glow);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.2);
}

.login-error {
    color: #ff0050;
    font-size: 0.9rem;
    background: rgba(255, 0, 80, 0.05);
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 0, 80, 0.2);
    font-weight: 500;
}

.login-submit-btn {
    margin-top: 10px;
    width: 100%;
    cursor: pointer;
}

.hidden {
    display: none !important;
}

/* ============ Responsive ============ */

/* Tablet (fekvő és álló) */
@media (max-width: 1024px) {
    .container { max-width: 100%; padding: 0 10px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .social-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
    .info-section { padding: 60px 20px; }
    .article-container { margin: 30px 20px; }
}

@media (max-width: 900px) {
    .solutions-list li { flex-direction: column; text-align: center; align-items: center; }
}

/* Mobil */
@media (max-width: 768px) {
    html { font-size: 14px; }
    
    .navbar { top: 10px; width: calc(100% - 20px); }
    .nav-inner { padding: 12px 18px; }
    
    .hero { padding: 90px 20px 0; min-height: 100svh; }
    .hero-badge { font-size: 0.75rem; padding: 6px 14px; }
    .title { letter-spacing: 3px; }
    .cta-container { gap: 12px; }
    .cta-container .glow-btn { flex: 1 1 auto; text-align: center; min-width: 140px; }
    .scroll-down { display: none; }
    
    .info-section { padding: 55px 15px; }
    .info-content { padding: 25px 22px; font-size: 0.98rem; }
    .solutions-container { padding: 25px 22px; }
    .social-section { padding: 60px 15px; }
    .stats-section { padding: 50px 15px; }
    
    .features-grid { gap: 18px; }
    .feature-card { padding: 28px 20px; }
    
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .stat-card { padding: 22px 15px; }
    .stat-number { font-size: 1.9rem; }
    
    .glass-card { max-width: 100%; }
    
    .report-container.glass-card { padding: 25px 18px; }
    .modern-form .form-row { grid-template-columns: 1fr; gap: 0; }
    
    .faq-question { font-size: 1rem; padding: 16px 18px; }
    .faq-answer p { padding: 0 18px 18px 18px; }
    
    .news-grid { grid-template-columns: 1fr; gap: 25px; }
    .news-grid.five-cols { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    
    .fab-container { bottom: 20px; right: 20px; }
    .fab-button { width: 52px; height: 52px; font-size: 1.2rem; }
    
    .modal-content { width: 94%; max-height: 85vh; border-radius: 18px; }
    .modal-split { flex-direction: column; gap: 20px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .modal-header h2 { font-size: 1.4rem; }
    .modal-header, .modal-body { padding: 22px; }
    .login-modal-content { padding: 28px 22px !important; }
    
    .article-top { flex-direction: column; text-align: center; gap: 22px; }
    .article-image-wrapper { flex: auto; width: 100%; height: 220px; }
    .article-container { padding: 22px 18px; margin: 15px; }
    .article-header-info h1 { font-size: 1.7rem; }
}

/* Kis mobil */
@media (max-width: 480px) {
    html { font-size: 13.5px; }
    
    .title { font-size: 2.4rem; letter-spacing: 2px; }
    .subtitle { letter-spacing: 1px; }
    
    .features-grid { grid-template-columns: 1fr; }
    .social-grid { grid-template-columns: 1fr; }
    .news-grid.five-cols { grid-template-columns: 1fr; }
    
    .section-title { padding-bottom: 16px; }
    .live-badge { font-size: 0.75rem; padding: 4px 10px; }
    
    .custom-file-upload { flex-direction: column; gap: 8px; padding: 16px 12px; }
    .custom-file-upload span { white-space: normal; text-align: center; }
}
