* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #b91c8c;
    --secondary: #d4305e;
    --accent: #f94d8f;
    --dark: #1a0f1f;
    --darker: #0d050f;
    --light: #f8f4fa;
    --text: #e8d5e8;
    --border: #3d2440;
    --gradient-main: linear-gradient(135deg, #b91c8c 0%, #f94d8f 100%);
    --gradient-dark: linear-gradient(135deg, #1a0f1f 0%, #2d1836 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    background: var(--darker);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin-bottom: 200px;
    padding-bottom: 20px;
}

main, .container {
    margin-bottom: 2rem;
}

footer {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.8) 100%);
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

/* Header/Navbar - Moderno e Responsivo */
header {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.8) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(236, 72, 153, 0.4);
}

.btn-secondary {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-secondary:hover {
    background: rgba(99, 102, 241, 0.2);
}

/* Player Container */
.player-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.98) 0%, rgba(2, 6, 23, 0.99) 100%);
    backdrop-filter: blur(20px);
    border-top: 2px solid rgba(99, 102, 241, 0.5);
    box-shadow: 0 -10px 40px rgba(236, 72, 153, 0.15);
    padding: 1rem;
    z-index: 999;
}

.player {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.05) 0%, rgba(236, 72, 153, 0.02) 100%);
    padding: 0.75rem;
    border-radius: 1rem;
}

.player-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 0 0 auto;
    min-width: 250px;
}

.player-cover {
    width: 50px;
    height: 50px;
    border-radius: 0.5rem;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.3);
    transition: all 0.3s;
}

.player-cover:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(236, 72, 153, 0.4);
}

.player-details h4 {
    margin: 0;
    font-size: 0.95rem;
    color: var(--light);
}

.player-details p {
    margin: 0;
    font-size: 0.85rem;
    color: #94a3b8;
}

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

.player-controls button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.4) 0%, rgba(236, 72, 153, 0.2) 100%);
    border: 2px solid rgba(99, 102, 241, 0.6);
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.3);
    opacity: 1;
    visibility: visible;
}

.player-controls button:hover {
    color: white;
    background: var(--gradient-main);
    border-color: var(--accent);
    transform: scale(1.15);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.4);
}

.player-controls button:active {
    transform: scale(0.95);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(236, 72, 153, 0.3); }
    50% { box-shadow: 0 0 40px rgba(236, 72, 153, 0.6); }
}

.player-progress {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 200px;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(148, 163, 184, 0.15);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
}

.progress-fill {
    height: 100%;
    background: var(--gradient-main);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s;
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.5);
}

.time {
    font-size: 0.85rem;
    color: #94a3b8;
    min-width: 45px;
}

.player-volume {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 0 0 auto;
}

.volume-slider {
    width: 100px;
    height: 6px;
    accent-color: var(--primary);
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(90deg, #6366f1, #ec4899);
    border-radius: 3px;
    outline: none;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.5);
    transition: all 0.2s;
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.8);
}

.volume-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.5);
}

/* Wave Visualizer */
.wave-visualizer {
    width: 100%;
    height: 80px;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.15) 0%, rgba(236, 72, 153, 0.05) 50%, transparent 100%);
    border-radius: 1rem;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: inset 0 0 20px rgba(99, 102, 241, 0.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    padding: 5rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

/* Grid de Álbuns */
.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

/* Grid de Categorias - Responsivo */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

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

.album-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.05) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.album-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(236, 72, 153, 0.2);
}

.album-cover {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.album-info {
    padding: 1.25rem;
}

.album-info h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    color: var(--light);
    font-weight: 700;
}

.album-info p {
    margin: 0;
    font-size: 0.85rem;
    color: #cbd5e1;
}

/* Track List */
.track-list {
    margin: 2rem 0;
}

.track-item {
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.1) 0%, transparent 100%);
    border: 1px solid rgba(99, 102, 241, 0.1);
    padding: 1.25rem;
    margin: 0.75rem 0;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.3s;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.track-item:hover {
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.2) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-color: var(--accent);
    transform: translateX(4px);
}

.track-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    min-width: 35px;
    text-align: center;
}

.track-info {
    flex: 1;
}

.track-info h4 {
    margin: 0 0 0.25rem 0;
    font-size: 0.95rem;
    color: var(--light);
}

.track-info p {
    margin: 0;
    font-size: 0.85rem;
    color: #94a3b8;
}

.track-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.track-duration {
    color: #94a3b8;
    font-size: 0.85rem;
    min-width: 40px;
}

.icon-btn {
    background: none;
    border: 2px solid transparent;
    color: #94a3b8;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 600;
    position: relative;
}

.icon-btn:hover {
    color: #ff6b9d;
    border-color: rgba(255, 107, 157, 0.3);
    background: rgba(255, 107, 157, 0.05);
    transform: scale(1.1);
}

.icon-btn.active {
    color: #ff1744;
    border-color: #ff1744;
    background: rgba(255, 23, 68, 0.1);
    transform: scale(1.1);
}

.icon-btn .count {
    font-size: 0.9rem;
    min-width: 20px;
    transition: transform 0.2s ease;
}

.icon-btn:active {
    transform: scale(0.95);
}

/* Stats */
.stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #cbd5e1;
    background: rgba(99, 102, 241, 0.05);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--light);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    color: var(--text);
    font-size: 0.95rem;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(30, 41, 59, 0.8);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Alerts */
.alert {
    padding: 1.25rem;
    border-radius: 0.75rem;
    margin: 1rem 0;
    border-left: 4px solid;
    backdrop-filter: blur(10px);
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    color: #86efac;
    border-left-color: #22c55e;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    color: #fca5a5;
    border-left-color: #ef4444;
}

.alert-info {
    background: rgba(59, 130, 246, 0.1);
    color: #93c5fd;
    border-left-color: #3b82f6;
}

/* Dashboard */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.05) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 2rem;
    border-radius: 0.75rem;
    backdrop-filter: blur(10px);
}

.card h3 {
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card .value {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

thead {
    background: rgba(99, 102, 241, 0.1);
    border-bottom: 2px solid rgba(99, 102, 241, 0.2);
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

tbody tr:hover {
    background: rgba(99, 102, 241, 0.05);
}

th {
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s;
}

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

.modal-content {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 1rem;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideIn 0.3s;
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close {
    color: #94a3b8;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: var(--accent);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.pagination button {
    padding: 0.75rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid var(--primary);
    color: var(--text);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.pagination button:hover:not(:disabled) {
    background: var(--primary);
    color: white;
}

.pagination button.active {
    background: var(--gradient-main);
    border-color: var(--accent);
    color: white;
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .albums-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .player {
        flex-direction: column;
        gap: 1rem;
    }
    
    .player-info {
        width: 100%;
        min-width: unset;
    }
    
    .player-progress {
        width: 100%;
        min-width: unset;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }
    
    .albums-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 1rem;
    }
    
    .hero {
        padding: 3rem 1rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .track-item {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .stats {
        gap: 1rem;
    }
    
    .stat-item {
        flex: 1;
        min-width: 150px;
    }
    
    table {
        font-size: 0.85rem;
    }
    
    th, td {
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 768px) {
    .player-container {
        padding: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .player {
        gap: 0.5rem;
        padding: 0.5rem;
        flex-direction: column;
    }
    
    .player-controls {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .player-controls button {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .nav-links {
        gap: 0.5rem;
        font-size: 0.9rem;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .albums-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 0.75rem;
    }
    
    .album-cover {
        height: 120px;
    }
    
    .player-container {
        padding: 0.4rem;
    }
    
    .player-info {
        min-width: unset;
        gap: 0.5rem;
    }
    
    .player-cover {
        width: 40px;
        height: 40px;
    }
    
    .player-controls button {
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
    }
    
    .player-progress {
        gap: 0.5rem;
    }
    
    .time {
        font-size: 0.65rem;
    }
    
    .modal-content {
        width: 95%;
        padding: 1.5rem;
        margin: 20% auto;
    }
    
    .btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(30, 41, 59, 0.5);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

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

/* Footer Styles */
footer {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.8) 100%);
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-section h4,
.footer-section h5 {
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-section p {
    font-size: 0.95rem;
    color: var(--text);
    opacity: 0.8;
    line-height: 1.5;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--accent);
    opacity: 1;
    padding-left: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    padding-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text);
    opacity: 0.7;
}

@media (max-width: 768px) {
    footer {
        padding: 2rem 0 1rem;
        margin-top: 2rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-section h4,
    .footer-section h5 {
        font-size: 1rem;
    }
}
/* Botões de reação mini (para faixas) */
.track-reactions {
    display: flex;
    gap: 0.3rem;
    align-items: center;
}

.reaction-btn-mini,
.share-btn-mini {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: #94a3b8;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0.3rem 0.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    font-weight: 600;
    white-space: nowrap;
}

.reaction-btn-mini:hover,
.share-btn-mini:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.4);
    transform: scale(1.05);
}

.reaction-btn-mini.active {
    background: rgba(255, 23, 68, 0.15);
    border-color: #ff1744;
    color: #ff1744;
}

.reaction-btn-mini .count,
.share-btn-mini .count {
    font-size: 0.75rem;
    min-width: 16px;
}

/* Botões de reação grandes (para álbum) */
.reaction-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.reaction-btn {
    background: rgba(99, 102, 241, 0.1);
    border: 2px solid rgba(99, 102, 241, 0.2);
    color: #cbd5e1;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 0.6rem 1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.reaction-btn:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.4);
    transform: scale(1.05);
}

.reaction-btn.active {
    background: rgba(255, 23, 68, 0.15);
    border-color: #ff1744;
    color: #ff1744;
    transform: scale(1.05);
}

.reaction-btn:active {
    transform: scale(0.95);
}

.reaction-btn .count {
    font-size: 0.9rem;
    min-width: 20px;
    transition: transform 0.2s ease;
}

/* Welcome Overlay */
.welcome-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(236, 72, 153, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.welcome-content {
    text-align: center;
    animation: slideUp 0.6s ease-out;
}

.welcome-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.welcome-content p {
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1rem 3rem !important;
    font-size: 1.2rem !important;
    border-radius: 50px !important;
}

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