/* Abastece Votu - Global Stylesheet (Updated with Animations) */

:root {
    --brand-gradient: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
    --brand-dark: #0F172A;
    --brand-darker: #020617;
    --brand-accent: #F59E0B;
    --text-light: #F8FAFC;
    --text-gray: #94A3B8;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --success: #34D399;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--brand-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--white);
    letter-spacing: -0.5px;
}

/* Glassmorphism Base */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ANIMATION: Hover on Cards */
.glass-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Buttons */
.btn {
    padding: 12px 28px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: var(--brand-gradient);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.45);
    filter: brightness(1.1);
}

.btn-ghost {
    background: transparent;
    color: var(--text-gray);
}

.btn-ghost:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--glass-border);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Header & Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.header-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Footer */
.premium-footer {
    background: var(--brand-darker);
    padding: 80px 8% 40px 8%;
    border-top: 1px solid var(--glass-border);
    color: var(--text-gray);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px auto;
}

/* Marquee Bar */
.top-bar {
    background: #000000;
    padding: 12px 0;
    font-size: 0.85rem;
    font-weight: 600;
    overflow: hidden;
    border-bottom: 1px solid var(--glass-border);
    position: relative;
}

.marquee-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    padding: 0 50px;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.marquee-content span {
    color: #FBBF24;
    background: rgba(251, 191, 36, 0.1);
    padding: 2px 8px;
    border-radius: 6px;
    margin: 0 4px;
    font-weight: 800;
    flex-shrink: 0;
}

/* Icons Animation */
.feature-icon {
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover .feature-icon {
    transform: scale(1.3) rotate(10deg);
}

/* Responsive Utilities */
@media (max-width: 768px) {
    header { padding: 15px 5%; }
    .header-buttons .btn-ghost { display: none; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
}
