@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&family=Orbitron:wght@400;700;900&display=swap');

:root {
    --bg-color: #f8fafc;
    /* Fundo claro para o novo tema */
    --text-primary: #1e293b;
    /* Texto escuro para leitura */
    --text-secondary: #475569;
    /* Texto secundário mais suave */
    --accent-blue: #0ea5e9;
    /* Azul claro principal */
    --accent-purple: #6366f1;
    /* Roxo suave */
    --glass-bg: rgba(240, 248, 255, 0.6);
    /* Vidro translúcido claro */
    --glass-border: rgba(0, 0, 0, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
.brand {
    font-family: 'Orbitron', sans-serif;
}

/* Background Effects */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background:
        linear-gradient(transparent 0%, var(--bg-color) 80%),
        linear-gradient(rgba(14, 165, 233, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 165, 233, 0.1) 1px, transparent 1px);
    background-size: 100% 100%, 50px 50px, 50px 50px;
    z-index: -2;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.5;
    animation: float 20s infinite alternate ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-blue);
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-purple);
    bottom: -200px;
    right: -100px;
    animation-delay: -5s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 50px) scale(1.2);
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
}

.logo-text {
    font-size: 0.8rem;
    margin-top: -5px;
    letter-spacing: 3px;
    color: var(--text-primary);
    -webkit-text-fill-color: var(--text-primary);
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 10px rgba(14, 165, 233, 0.5));
}

.feature-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--glass-border);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-blue);
}

.nav-logo-img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 168, 89, 0.5));
    transition: filter 0.3s ease, transform 0.3s ease;
}

.nav-logo-img:hover {
    filter: drop-shadow(0 0 20px rgba(0, 168, 89, 0.8));
    transform: scale(1.05);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--accent-blue);
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

/* Ponte invisível para evitar que o mouse perca o hover no espaço entre o link e o menu */
.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    height: 15px;
    /* Cobre o espaço em branco do dropdown (margin-top 10px + sobra) */
    background: transparent;
    z-index: 100;
}

.dropdown-toggle {
    cursor: pointer;
}

/* Mantém o sublinhado azul do link "Publicações" visível enquanto o dropdown estiver aberto */
.nav-dropdown:hover .dropdown-toggle::after {
    width: 100%;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -10px);
    background: rgba(255, 255, 255, 0.95);
    min-width: 220px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 105;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    overflow: hidden;
    padding: 0.5rem 0;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    pointer-events: none;
    /* 0.3s dealy on visibility to prevent accidental disappearance when mouse enters the gap */
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0.3s;
}

.nav-dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
    pointer-events: auto;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0s;
}

.dropdown-content a {
    color: var(--text-primary);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.85rem;
    text-transform: none;
    letter-spacing: normal;
    text-align: center;
}

.dropdown-content a::after {
    display: none !important;
}

.dropdown-content a:hover {
    background: rgba(14, 165, 233, 0.1);
    color: var(--accent-blue);
}

/* Language Selector */
.lang-selector {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    padding: 0.3rem 0.6rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
    transition: all 0.3s;
    margin-left: 1rem;
}

.lang-selector:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

.lang-selector option {
    background: var(--bg-color);
    color: var(--text-primary);
}

/* Header/Hero */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
    animation: txt-glow 3s infinite alternate;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--accent-blue);
    border: 1px solid var(--accent-blue);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.btn:hover {
    background: var(--accent-blue);
    color: var(--bg-color);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.6);
}

@keyframes txt-glow {
    0% {
        text-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
    }

    100% {
        text-shadow: 0 0 40px rgba(0, 240, 255, 0.8), 0 0 10px rgba(112, 0, 255, 0.5);
    }
}

/* Glass Container Base */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--glass-shadow);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-panel:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 240, 255, 0.1);
}

/* Page Layout */
.page-container {
    padding: 120px 5% 50px;
    min-height: 100vh;
    max-width: 1200px;
    margin: 0 auto;
}

.page-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    background: linear-gradient(90deg, #fff, var(--text-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: #00FFFF;
}

/* Articles Section */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.article-card {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.article-card:hover::before {
    transform: scaleX(1);
}

.article-meta {
    font-size: 0.8rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.article-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.article-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.read-more::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s;
}

.read-more:hover::after {
    transform: translateX(5px);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-blue), var(--accent-purple));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--bg-color);
    border: 4px solid var(--accent-blue);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 10px var(--accent-blue);
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.right::after {
    left: -10px;
}

.timeline-date {
    font-family: 'Orbitron', sans-serif;
    color: var(--accent-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Team Section */
.team-hierarchy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.team-tier {
    width: 100%;
}

.tier-title {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}

.team-card {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.avatar-container {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-purple));
    position: relative;
}

.avatar-container::before {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-purple));
    z-index: -1;
    filter: blur(15px);
    opacity: 0.6;
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--bg-color);
}

.member-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.member-role {
    color: var(--accent-blue);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1000;
}

.menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: var(--accent-blue);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hamburger Animation */
.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        width: 100%;
        height: 100vh;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-dropdown {
        width: 100%;
        text-align: center;
    }

    .dropdown-content {
        position: static;
        display: none;
        visibility: visible;
        opacity: 1;
        background: transparent;
        border: none;
        box-shadow: none;
        transform: none;
        margin-top: 0;
        width: 100%;
        pointer-events: auto;
    }

    .nav-dropdown:hover .dropdown-content,
    .nav-dropdown:active .dropdown-content {
        display: flex;
        transform: none;
        opacity: 1;
        visibility: visible;
    }

    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item.right {
        left: 0;
    }

    .left::after,
    .right::after {
        left: 21px;
    }
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 5%;
    border-top: 1px solid var(--glass-border);
    margin-top: 4rem;
    backdrop-filter: blur(10px);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    /* Optional shadow to ensure visibility on dark background */
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

.footer-logo.ufrn {
    height: 55px;
    /* Brasão of UFRN needs to be slightly taller visually */
}

footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Page Header General (Used in Parceiros) */
.page-header {
    padding: 150px 5% 60px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Partners Layout Styles */
.partners-section {
    padding: 40px 5% 100px;
    position: relative;
    z-index: 10;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.partner-logo {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.partner-logo:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-blue);
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.2);
}

/* Highlight specific logos based on reference visually */
.logo-vicunha {
    font-size: 1.4rem;
    font-weight: bold;
    font-family: sans-serif;
}

.logo-ufrn {
    color: #0066cc;
    font-size: 1.5rem;
    font-family: sans-serif;
}

.logo-agir {
    color: #004080;
    font-size: 1.2rem;
}

.logo-sebrae {
    color: #005eb8;
    font-size: 1.1rem;
}

.partner-brand-box {
    background-color: #00a859;
    border-radius: 40px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0, 168, 89, 0.3);
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.partner-brand-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.brand-icon {
    width: 150px;
    height: 150px;
    margin-bottom: 30px;
}

.brand-name {
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

@media (max-width: 900px) {
    .partners-container {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partner-brand-box {
        margin: 0 auto;
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 500px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
}

/* Upgrafen Section Styles */
.upgrafen-section {
    padding: 60px 5%;
    position: relative;
    z-index: 10;
}

.upgrafen-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.upgrafen-card {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 4px solid var(--primary-color);
    padding: 30px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.upgrafen-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 168, 89, 0.15);
}

.upgrafen-card h3 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.upgrafen-card h3::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
}

.upgrafen-card ul {
    list-style: none;
    color: var(--text-secondary);
    line-height: 1.6;
}

.upgrafen-card ul li {
    margin-bottom: 0.8rem;
    padding-left: 20px;
    position: relative;
}

.upgrafen-card ul li::before {
    content: '❯';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.8rem;
    top: 3px;
}

.upgrafen-feature {
    color: var(--accent-blue);
    font-weight: bold;
    display: block;
    margin-top: -3px;
    margin-bottom: 5px;
}

/* Floating NanoUP Action Button */
.floating-nanoup-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    border-radius: 50%;
}

.floating-nanoup-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(0, 168, 89, 0.2) 0%, rgba(0, 168, 89, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    transition: all 0.3s ease;
}

.floating-nanoup-btn img {
    width: 85px;
    height: auto;
    filter: drop-shadow(0 0 5px rgba(0, 168, 89, 0.4));
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-nanoup-btn:hover {
    transform: translateY(-5px);
}

.floating-nanoup-btn:hover::before {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 168, 89, 0.35) 0%, rgba(0, 168, 89, 0) 70%);
}

.floating-nanoup-btn:hover img {
    transform: scale(1.15);
    filter: drop-shadow(0 0 10px rgba(0, 168, 89, 0.8));
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    z-index: 1000;
    transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    pointer-events: none;
}

.cookie-banner.show {
    bottom: 30px;
    opacity: 1;
    pointer-events: auto;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.5;
}

.cookie-banner a {
    color: var(--accent-blue);
    text-decoration: none;
}

.cookie-banner a:hover {
    text-decoration: underline;
}

.cookie-btn {
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--accent-blue);
    border: 1px solid var(--accent-blue);
    border-radius: 4px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn:hover {
    background: var(--accent-blue);
    color: var(--bg-color);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        bottom: -200px;
        width: 95%;
    }

    .cookie-banner.show {
        bottom: 20px;
    }

    .cookie-btn {
        width: 100%;
    }
}