/* ========================================
   UP TV - Streaming de Shows Sertanejos
   Styles CSS
======================================== */

/* CSS Variables */
:root {
    --background: hsl(0, 0%, 4%);
    --foreground: hsl(0, 0%, 98%);
    --card: hsl(0, 0%, 8%);
    --card-foreground: hsl(0, 0%, 98%);
    --primary: hsl(25, 100%, 50%);
    --primary-foreground: hsl(0, 0%, 100%);
    --primary-light: hsl(35, 100%, 55%);
    --secondary: hsl(0, 0%, 12%);
    --secondary-foreground: hsl(0, 0%, 98%);
    --muted: hsl(0, 0%, 15%);
    --muted-foreground: hsl(0, 0%, 60%);
    --border: hsl(0, 0%, 18%);
    --input: hsl(0, 0%, 15%);
    --radius: 0.75rem;
    --gradient-primary: linear-gradient(135deg, hsl(25, 100%, 50%) 0%, hsl(35, 100%, 55%) 100%);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Utilities */
.hidden {
    display: none !important;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Icons */
.icon {
    width: 1.25rem;
    height: 1.25rem;
}

.icon-small {
    width: 1rem;
    height: 1rem;
}

/* Animations */
@keyframes pulse-live {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 0.6s ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn 0.3s ease-out forwards;
}

/* Live Dot */
.live-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--primary);
    border-radius: 50%;
    animation: pulse-live 2s infinite;
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

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

.btn-outline:hover {
    background: var(--muted);
    border-color: var(--muted-foreground);
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
}

.btn-primary:hover {
    background: hsl(25, 100%, 45%);
}

.btn-cta {
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    font-weight: 700;
    padding: 0.75rem 1.5rem;
}

.btn-cta:hover {
    box-shadow: 0 10px 30px -10px hsla(25, 100%, 50%, 0.5);
    transform: scale(1.02);
}

.btn-full {
    width: 100%;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    border-radius: var(--radius);
    color: var(--foreground);
    cursor: pointer;
    transition: background 0.2s;
}

.btn-icon:hover {
    background: var(--muted);
}

.btn-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--secondary);
    border: none;
    border-radius: 50%;
    color: var(--foreground);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-nav:hover {
    background: var(--muted);
}

/* ========================================
   HEADER
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    backdrop-filter: blur(16px);
    background: rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

@media (min-width: 1024px) {
    .header-content {
        height: 5rem;
    }
}

.logo-img {
    height: 2.5rem;
    width: auto;
    object-fit: contain;
}

@media (min-width: 1024px) {
    .logo-img {
        height: 3rem;
    }
}

/* Desktop Navigation */
.nav-desktop {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    text-decoration: none;
    border-radius: var(--radius);
    transition: all 0.2s;
}

.nav-link:hover {
    color: var(--foreground);
    background: var(--muted);
}

.nav-link-live {
    color: var(--primary);
}

.nav-link-live:hover {
    color: var(--primary);
    background: hsla(25, 100%, 50%, 0.1);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-actions .btn-icon:first-child {
    display: none;
}

@media (min-width: 1024px) {
    .header-actions .btn-icon:first-child {
        display: flex;
    }
}

#userArea .btn {
    display: none;
}

@media (min-width: 1024px) {
    #userArea .btn {
        display: inline-flex;
    }
}

.mobile-menu-btn {
    display: flex;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* User Avatar */
.user-avatar {
    width: 2.25rem;
    height: 2.25rem;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-avatar .icon {
    color: var(--primary-foreground);
}

/* Mobile Navigation */
.nav-mobile {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--border);
    animation: fadeIn 0.3s ease;
}

@media (min-width: 1024px) {
    .nav-mobile {
        display: none !important;
    }
}

.nav-mobile .container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
}

.nav-link-mobile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--foreground);
    text-decoration: none;
    border-radius: var(--radius);
    transition: background 0.2s;
}

.nav-link-mobile:hover {
    background: var(--muted);
}

.nav-link-mobile.nav-link-live {
    color: var(--primary);
    background: hsla(25, 100%, 50%, 0.1);
}

.mobile-menu-divider {
    height: 1px;
    background: var(--border);
    margin: 0.5rem 0;
}

/* ========================================
   MAIN CONTENT
======================================== */
.main {
    padding-top: 5rem;
}

@media (min-width: 1024px) {
    .main {
        padding-top: 6rem;
    }
}

/* Hero Section */
.hero-section {
    padding: 1.5rem 0 2rem;
}

@media (min-width: 1024px) {
    .hero-section {
        padding: 2.5rem 0 3rem;
    }
}

/* Show Info */
.show-info {
    margin-bottom: 1.5rem;
}

.show-badges {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.badge-live {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background: hsla(25, 100%, 50%, 0.1);
    border: 1px solid hsla(25, 100%, 50%, 0.3);
    border-radius: 9999px;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
}

.show-channel {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.show-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
    .show-title {
        font-size: 3rem;
    }
}

.show-description {
    color: var(--muted-foreground);
    font-size: 1rem;
    max-width: 42rem;
}

@media (min-width: 1024px) {
    .show-description {
        font-size: 1.125rem;
    }
}

/* ========================================
   VIDEO PLAYER
======================================== */
.video-player {
    position: relative;
    border-radius: calc(var(--radius) * 2);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.video-container {
    position: relative;
    aspect-ratio: 16 / 9;
    background: var(--card);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Player Overlay */
.player-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        transparent 30%,
        transparent 60%,
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    transition: opacity 0.3s;
}

@media (min-width: 1024px) {
    .player-overlay {
        padding: 1.5rem;
    }
}

/* Player Badges */
.player-badges {
    display: flex;
    gap: 0.5rem;
}

.badge-live-player {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background: rgba(239, 68, 68, 0.9);
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-live-player .live-dot {
    background: white;
}

.badge-free {
    padding: 0.375rem 0.75rem;
    background: hsla(25, 100%, 50%, 0.9);
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Play Button */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5rem;
    height: 5rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 0 30px hsla(25, 100%, 50%, 0.4);
}

@media (min-width: 1024px) {
    .play-button {
        width: 6rem;
        height: 6rem;
    }
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 50px hsla(25, 100%, 50%, 0.6);
}

.play-icon {
    width: 2rem;
    height: 2rem;
    color: white;
    margin-left: 0.25rem;
}

@media (min-width: 1024px) {
    .play-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
}

/* Player Bottom */
.player-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.player-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.viewers {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.control-btn {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Login Overlay */
.login-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.login-overlay-content {
    text-align: center;
    padding: 2rem;
}

.lock-icon {
    width: 3rem;
    height: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.login-overlay-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.login-overlay-content p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

/* Premium CTA */
.premium-cta {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, hsla(25, 100%, 50%, 0.1) 0%, hsla(25, 100%, 50%, 0.05) 50%, transparent 100%);
    border: 1px solid hsla(25, 100%, 50%, 0.2);
    border-radius: calc(var(--radius) * 1.5);
    animation: slideUp 0.6s ease-out forwards;
}

.premium-cta-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .premium-cta-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.premium-cta-text h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.premium-cta-text p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* ========================================
   TICKETS SECTION
======================================== */
.tickets-section {
    padding: 2rem 0 3rem;
    border-top: 1px solid var(--border);
}

@media (min-width: 1024px) {
    .tickets-section {
        padding: 3rem 0 4rem;
    }
}

.icon-title {
    width: 1.5rem;
    height: 1.5rem;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
    color: var(--primary);
}

@media (min-width: 1024px) {
    .icon-title {
        width: 1.875rem;
        height: 1.875rem;
    }
}

/* Tickets Grid */
.tickets-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .tickets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tickets-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1280px) {
    .tickets-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Ticket Card */
.ticket-card {
    position: relative;
    border-radius: calc(var(--radius) * 1.5);
    overflow: hidden;
    background: var(--card);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s ease-out;
}

.ticket-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px -15px hsla(25, 100%, 50%, 0.3);
    border-color: var(--primary);
}

.ticket-card-image {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.ticket-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ticket-card:hover .ticket-card-image img {
    transform: scale(1.08);
}

.ticket-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(0, 0, 0, 0.8) 100%);
}

.ticket-card-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
}

.badge-ticket {
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.badge-ticket-vip {
    background: linear-gradient(135deg, hsla(45, 100%, 50%, 0.9) 0%, hsla(35, 100%, 45%, 0.9) 100%);
    color: black;
}

.badge-ticket-sold-out {
    background: rgba(239, 68, 68, 0.9);
    color: white;
}

.badge-ticket-available {
    background: rgba(34, 197, 94, 0.9);
    color: white;
}

.badge-ticket-promo {
    background: var(--gradient-primary);
    color: white;
}

.ticket-card-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    text-align: center;
    padding: 0.5rem 0.75rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ticket-date-day {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary);
}

.ticket-date-month {
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--muted-foreground);
    margin-top: 0.125rem;
}

.ticket-card-content {
    padding: 1.25rem;
}

.ticket-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.ticket-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3;
    flex: 1;
}

.ticket-card-price {
    text-align: right;
    flex-shrink: 0;
}

.ticket-price-label {
    font-size: 0.625rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    margin-bottom: 0.125rem;
}

.ticket-price-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
}

.ticket-card-artist {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.ticket-card-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.ticket-info-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.ticket-info-item .icon-small {
    color: var(--primary);
}

.ticket-card-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-ticket {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-ticket-primary {
    background: var(--gradient-primary);
    color: var(--primary-foreground);
}

.btn-ticket-primary:hover {
    box-shadow: 0 10px 25px -5px hsla(25, 100%, 50%, 0.4);
    transform: scale(1.02);
}

.btn-ticket-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-ticket-secondary {
    background: var(--secondary);
    color: var(--foreground);
    flex: 0 0 auto;
    padding: 0.875rem;
}

.btn-ticket-secondary:hover {
    background: var(--muted);
}

/* ========================================
   FOOTER
======================================== */
.shows-section {
    padding: 2rem 0 3rem;
}

@media (min-width: 1024px) {
    .shows-section {
        padding: 3rem 0 4rem;
    }
}

.section-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 1.875rem;
    }
}

.section-subtitle {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.section-nav {
    display: none;
    gap: 0.5rem;
}

@media (min-width: 1024px) {
    .section-nav {
        display: flex;
    }
}

/* Shows Grid */
.shows-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
}

@media (min-width: 640px) {
    .shows-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .shows-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1280px) {
    .shows-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Show Card */
.show-card {
    position: relative;
    border-radius: calc(var(--radius) * 1.5);
    overflow: hidden;
    background: var(--card);
    cursor: pointer;
    transition: all 0.3s ease-out;
}

.show-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px -15px hsla(25, 100%, 50%, 0.25);
}

.show-card-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.show-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.show-card:hover .show-card-image img {
    transform: scale(1.05);
}

.show-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
}

.show-card-badges {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    gap: 0.5rem;
}

.badge-card {
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-card-live {
    background: rgba(239, 68, 68, 0.9);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.badge-card-live .live-dot {
    width: 0.375rem;
    height: 0.375rem;
    background: white;
}

.badge-card-premium {
    background: hsla(45, 100%, 50%, 0.9);
    color: black;
}

.show-card-time {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.5rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.show-card-time .icon-small {
    color: var(--primary);
}

.show-card-content {
    padding: 1rem;
}

.show-card-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.show-card-artist {
    color: var(--muted-foreground);
    font-size: 0.75rem;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--card);
    border-top: 1px solid var(--border);
    padding: 3rem 0;
    margin-top: 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
        gap: 3rem;
    }
}

/* Footer Brand */
.footer-logo {
    height: 3rem;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-foreground);
    transition: all 0.2s;
}

.social-link:hover {
    background: var(--primary);
    color: var(--primary-foreground);
}

/* Footer Links */
.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
}

/* Footer Contact */
.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--muted);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon .icon {
    color: var(--primary);
}

.contact-label {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.contact-value {
    font-size: 0.875rem;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--border);
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* ========================================
   MODAL
======================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.2s ease;
}

.modal {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) * 2);
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    position: relative;
    animation: scaleIn 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    background: var(--muted);
    border: none;
    border-radius: 50%;
    color: var(--muted-foreground);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.modal-close:hover {
    background: var(--secondary);
    color: var(--foreground);
}

.modal-close .icon {
    width: 1rem;
    height: 1rem;
}

.modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.modal-logo {
    height: 2.5rem;
    width: auto;
    margin-bottom: 1rem;
}

.modal-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* Form */
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--input);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--foreground);
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input::placeholder {
    color: var(--muted-foreground);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
}

.modal-footer-text {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.modal-footer-text a {
    color: var(--primary);
    text-decoration: none;
}

.modal-footer-text a:hover {
    text-decoration: underline;
}

/* ========================================
   SCROLLBAR
======================================== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: hsl(0, 0%, 8%);
}

::-webkit-scrollbar-thumb {
    background: hsl(0, 0%, 25%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}
