:root {
    /* Dark Professional Color Scheme */
    --dark-bg: #2c3e50;
    --darker-bg: #1a252f;
    --darkest-bg: #0f1419;
    --accent-orange: #ff9f1c;
    --accent-orange-dark: #ff8c00;
    --text-white: #ffffff;
    --text-gray: #b8c5d6;
    --text-light-gray: #8899a6;
    --card-bg: #34495e;
    --border-color: #445566;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--darker-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   NAVIGATION
============================================ */
.navbar {
    background-color: var(--darkest-bg);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ============================================
   GOLDEN EYE LOGO STYLING (PREMIUM)
============================================ */
.logo-eye {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 0;
}

.eye-emblem {
    position: relative;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eye-outer {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(255, 159, 28, 0.4));
}

.eye-inner-check {
    position: absolute;
    font-size: 1.6rem;
    color: #FFFFFF;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    padding: 4px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}


.logo-text-premium {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text-white);
    letter-spacing: 2px;
    line-height: 1;
    text-transform: uppercase;
}

.brand-name .gold {
    background: linear-gradient(to right, var(--accent-orange), var(--accent-orange-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-light-gray);
    letter-spacing: 4px;
    margin-top: 6px;
    text-transform: uppercase;
    opacity: 0.9;
}

/* ============================================
   PREMIUM RESULT DISPLAY
============================================ */
.result-card-premium {
    margin-top: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.prediction-main {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 5px;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-shadow: 0 0 20px currentColor;
    transition: all 0.3s ease;
}

.prediction-sub {
    font-size: 1.1rem;
    color: var(--text-light-gray);
    font-weight: 600;
    letter-spacing: 1px;
}

/* Deep Analysis Reasons Styling */
.reasons-list {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.reason-item {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 8px;
    display: flex;
    gap: 10px;
    line-height: 1.4;
    animation: fadeInSlide 0.5s ease forwards;
}

.reason-item:last-child {
    margin-bottom: 0;
}

.reason-item i {
    color: var(--accent-orange);
    font-size: 0.8rem;
    margin-top: 3px;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Error UI */
.error-msg-ui {
    color: #ff4757;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 5px 0 15px 0;
    height: 24px;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 15px;
    gap: 8px;
    background: rgba(255, 71, 87, 0.05);
    border-radius: 8px;
}

.error-msg-ui i {
    font-size: 1rem;
    color: #ff4757;
}

.error-msg-ui:empty {
    display: none;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

.tagline-small {
    font-size: 0.7rem;
    color: var(--text-light-gray);
    letter-spacing: 1px;
    margin-top: -5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-orange);
    transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-orange);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    border-radius: 3px;
    transition: 0.3s;
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: crossfade 15s infinite;
}

.slide:nth-child(1) {
    animation-delay: 0s;
}

.slide:nth-child(2) {
    animation-delay: 5s;
}

.slide:nth-child(3) {
    animation-delay: 10s;
}

@keyframes crossfade {
    0% {
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    33.33% {
        opacity: 1;
    }

    38.33% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 20, 25, 0.7), rgba(26, 37, 47, 0.5));
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.1), transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(74, 144, 226, 0.1), transparent 50%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-weight: 300;
}

.hero-title {
    font-size: 6rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 10px;
    margin-bottom: 30px;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    line-height: 1;
}

.hero-description {
    font-size: 1.8rem;
    color: var(--text-gray);
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-description .highlight {
    color: var(--accent-orange);
    font-weight: 600;
}

/* ============================================
   SECTION STYLING
============================================ */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    letter-spacing: 5px;
    text-transform: uppercase;
    background: linear-gradient(to right, var(--accent-orange), var(--accent-orange-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-orange);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 159, 28, 0.5);
}

.section-header p {
    color: var(--text-light-gray);
    font-size: 1.1rem;
}

/* ============================================
   SERVICES SECTION
============================================ */
.services-section {
    background-color: var(--darker-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    padding: 50px 30px;
    text-align: center;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: rgba(255, 159, 28, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 159, 28, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(208, 0, 0, 0.1));
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.2rem;
    color: var(--accent-orange);
    transition: all 0.5s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-dark));
    color: white;
    box-shadow: 0 0 30px rgba(255, 159, 28, 0.5);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-white);
    letter-spacing: 2px;
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.8;
}

.view-more {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 1px solid transparent;
}

.view-more:hover {
    color: white;
    border-bottom-color: var(--accent-orange);
    transform: translateX(5px);
}

/* ============================================
   WORKS SECTION (Fake News Detection)
============================================ */
.works-section {
    background-color: var(--dark-bg);
}

.works-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.analysis-panel {
    background: rgba(26, 37, 47, 0.8);
    backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.analysis-panel h3 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(to right, #fff, var(--text-gray));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.input-type-selector {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .result-container {
        grid-template-columns: 1fr;
    }
}

.radio-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 35px;
    background-color: var(--darkest-bg);
    color: var(--text-gray);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.05);
    letter-spacing: 1px;
}

.radio-label input:checked+.radio-btn {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-dark));
    color: var(--text-white);
    box-shadow: 0 10px 25px rgba(255, 159, 28, 0.4), 0 0 10px rgba(255, 159, 28, 0.2);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

.input-container {
    margin-bottom: 25px;
}

.hidden {
    display: none !important;
}

textarea,
input[type="url"],
input[type="text"],
input[type="email"] {
    width: 100%;
    padding: 22px;
    background-color: var(--darkest-bg) !important;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-white);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.2);
}

textarea:focus,
input:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 15px rgba(255, 159, 28, 0.15), inset 0 2px 5px rgba(0, 0, 0, 0.3);
}

textarea {
    height: 180px;
    resize: none;
}

.action-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.analyze-btn {
    flex: 2;
    padding: 20px;
    background: linear-gradient(135deg, #ff9f1c, #ff6b35);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Fact check specific style override */
#factCheckBtn {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.analyze-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    transform: rotate(30deg);
    transition: all 0.6s ease;
}

.analyze-btn:hover:not(:disabled)::after {
    left: 150%;
}

.analyze-btn:disabled {
    background: var(--text-light-gray);
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
}

.analyze-btn:hover:not(:disabled) {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 159, 28, 0.3);
    filter: brightness(1.1);
}

#factCheckBtn:hover:not(:disabled) {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(52, 152, 219, 0.3);
}

.refresh-btn {
    flex: 1;
    padding: 20px;
    background-color: var(--darkest-bg);
    color: var(--text-gray);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.refresh-btn:hover {
    background-color: #34495e;
    color: var(--text-white);
    border-color: var(--text-gray);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.result-container {
    min-height: 80px;
    padding: 20px;
    background-color: var(--darker-bg);
    border-radius: 10px;
    border: 2px solid var(--border-color);
}

.result-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 10px;
}

.confidence-text {
    font-size: 1.1rem;
    color: var(--text-gray);
}

/* ============================================
   BLOG SECTION
============================================ */
.blog-section {
    background-color: var(--darker-bg);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.blog-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-color);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--text-white);
}

.blog-content {
    padding: 30px;
}

.blog-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--accent-orange);
}

.blog-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.read-more {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.read-more:hover {
    color: var(--text-white);
}

/* ============================================
   TESTIMONIALS SECTION
============================================ */
.testimonials-section {
    background-color: var(--dark-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 10px;
    position: relative;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.quote-icon {
    font-size: 2rem;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.quote-icon-end {
    font-size: 2rem;
    color: var(--accent-orange);
    text-align: right;
    margin-top: 20px;
}

.testimonial-text {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-white);
}

.author-info h4 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-light-gray);
    font-size: 0.9rem;
}

/* ============================================
   ABOUT SECTION
============================================ */
.about-section {
    background-color: var(--darker-bg);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--border-color);
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--text-white);
}

.about-text p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-white);
    font-size: 1.1rem;
    margin-top: 20px;
}

.feature-item i {
    color: var(--accent-orange);
    font-size: 1.5rem;
}

/* ============================================
   CONTACT SECTION
============================================ */
.contact-section {
    background-color: var(--dark-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-white);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    width: 50px;
    height: 50px;
    background-color: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-item h4 {
    color: var(--text-white);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.submit-btn {
    padding: 18px;
    background-color: var(--accent-orange);
    color: var(--text-white);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:disabled {
    background-color: var(--text-light-gray);
    cursor: not-allowed;
}

.submit-btn:hover:not(:disabled) {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

/* ============================================
   FOOTER
============================================ */
.footer {
    background-color: var(--darkest-bg);
    padding: 60px 0 30px;
    border-top: 3px solid var(--accent-orange);
}

.footer-bottom {
    text-align: center;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-orange);
}

.footer-links span {
    color: var(--text-light-gray);
}

.copyright {
    color: var(--text-light-gray);
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--darkest-bg);
        padding: 30px;
        gap: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 5px;
    }

    .hero-description {
        font-size: 1.3rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
}

/* Validation Styles */
input.invalid,
textarea.invalid {
    border-color: #ef4444 !important;
    background-color: rgba(239, 68, 68, 0.05) !important;
}

.error-message {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 8px;
    display: none;
    align-items: center;
    gap: 6px;
    animation: fadeIn 0.3s ease;
}

.error-message.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.real-news {
    animation: glowReal 1.5s infinite alternate;
}

.fake-news {
    animation: glowFake 1.5s infinite alternate;
}

@keyframes glowReal {
    from {
        text-shadow: 0 0 5px rgba(46, 204, 113, 0.3);
    }

    to {
        text-shadow: 0 0 15px rgba(46, 204, 113, 0.6);
    }
}

@keyframes glowFake {
    from {
        text-shadow: 0 0 5px rgba(231, 76, 60, 0.3);
    }

    to {
        text-shadow: 0 0 15px rgba(231, 76, 60, 0.6);
    }
}