:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --text-color: #ffffff;
    --text-secondary: #a8a8a8;
    --border-color: #2a2a3e;
    --success-color: #00d9ff;
    --danger-color: #e74c3c;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--primary-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--border-color);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: var(--text-color);
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.2rem;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.4rem 0.7rem;
    border-radius: 5px;
    white-space: nowrap;
    font-size: 0.95rem;
}

.nav-menu a:hover {
    color: var(--accent-color);
    background: rgba(233, 69, 96, 0.1);
}

.btn-discord {
    background: #5865f2;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: transform 0.3s;
    white-space: nowrap;
}

.btn-discord:hover {
    transform: translateY(-2px);
    background: #4752c4;
}

.btn-login {
    background: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: transform 0.3s;
    white-space: nowrap;
}

.btn-login:hover {
    transform: translateY(-2px);
    background: #d63851;
}

.btn-admin {
    background: #f59e0b;
    color: var(--text-color);
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: transform 0.3s;
    white-space: nowrap;
}

.btn-admin:hover {
    transform: translateY(-2px);
    background: #d97706;
}

.user-info {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: var(--secondary-color);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.user-info:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown a {
    display: block;
    padding: 0.8rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    transition: background 0.2s;
    border-radius: 6px;
    margin: 0.2rem;
}

.user-dropdown a:hover {
    background: rgba(233, 69, 96, 0.1);
    color: var(--accent-color);
}

.user-dropdown .logout-link {
    color: #ef4444;
    border-top: 1px solid var(--border-color);
    border-radius: 0 0 6px 6px;
    margin-top: 0.3rem;
}

.user-dropdown .logout-link:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: 80px;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    filter: blur(8px) brightness(0.6);
    opacity: 0.8;
}

.hero-video-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 26, 46, 0.5), rgba(26, 26, 46, 0.7));
    backdrop-filter: blur(2px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    perspective: 1000px;
}

.hero-logo {
    height: 150px;
    width: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.5));
    animation: float 3s ease-in-out infinite;
    transition: transform 0.2s ease-out;
    will-change: transform;
    transform-style: preserve-3d;
    cursor: pointer;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.2s ease-out;
    will-change: transform;
    transform-style: preserve-3d;
    cursor: pointer;
}

.hero-content p {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

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

/* Section Title */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--gradient-1);
    margin: 1rem auto;
}

/* Twitch Stream */
.twitch-container {
    background: var(--secondary-color);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 2px solid var(--border-color);
    display: none;
}

.twitch-container.active {
    display: block;
}

.twitch-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.twitch-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Matches Section */
.matches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
    perspective: 1500px;
    padding: 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.match-card {
    background: var(--secondary-color);
    border-radius: 10px;
    padding: 1.5rem;
    border: 2px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    cursor: pointer;
    width: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.match-card.match-win {
    border-color: #27ae60;
}

.match-card.match-loss {
    border-color: #e74c3c;
}

.match-card.match-win .score {
    color: #27ae60;
    text-shadow: 0 2px 10px rgba(39, 174, 96, 0.3);
}

.match-card.match-loss .score {
    color: #e74c3c;
    text-shadow: 0 2px 10px rgba(231, 76, 60, 0.3);
}

.match-card:hover {
    transform: translateY(-5px) rotateX(2deg) scale(1.02);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.match-card.match-win:hover {
    border-color: #2ecc71;
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.3);
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.match-header-centered {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.match-tournament {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
}

.match-countdown {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--success-color);
    margin-top: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: rgba(39, 174, 96, 0.1);
    border-radius: 5px;
    display: inline-block;
    transition: all 0.3s ease;
}

.match-date {
    font-size: 0.85rem;
    color: var(--success-color);
}

.match-date-footer {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.match-teams-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0;
    gap: 0.5rem;
    width: 100%;
}

.team-with-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1 1 0;
    min-width: 0;
    max-width: 150px;
    transition: opacity 0.3s;
}

.team-with-logo.winner {
    opacity: 1;
}

.match-card[data-match-type="results"] .team-with-logo:not(.winner) {
    opacity: 0.6;
}

.team-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.team-logo.enemy-logo {
    filter: grayscale(30%) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.team-name {
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
    width: 100%;
}

.score {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-color);
    text-shadow: 0 2px 10px rgba(233, 69, 96, 0.3);
    min-width: 80px;
    flex-shrink: 0;
    text-align: center;
}

.match-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.match-format {
    font-weight: 500;
}

.has-details {
    color: var(--success-color);
}

/* Team Members */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    perspective: 1000px;
}

.member-card {
    background: var(--secondary-color);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    cursor: pointer;
}

.member-card:hover {
    transform: translateY(-8px) rotateX(3deg) scale(1.03);
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    border: 3px solid var(--accent-color);
}

.member-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.member-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.member-links a {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.member-links a:hover {
    color: var(--accent-color);
}

/* CS2 Section */
.cs2-section {
    background: var(--secondary-color);
    border-radius: 10px;
    padding: 3rem;
    text-align: center;
    border: 2px solid var(--border-color);
    margin-top: 3rem;
}

.cs2-logo {
    max-width: 300px;
    margin-bottom: 2rem;
}

.btn-steam {
    display: inline-block;
    background: #171a21;
    color: var(--text-color);
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, background 0.3s;
}

.btn-steam:hover {
    transform: translateY(-2px);
    background: #1b2838;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    border-top: 2px solid var(--border-color);
    padding: 2rem;
    color: var(--text-secondary);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-content > div:first-child {
    text-align: center;
    flex: 1;
}

.footer-language-switcher {
    display: flex;
    align-items: center;
}

/* Responsive */
@media (max-width: 1400px) {
    .matches-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 1200px) {
    .matches-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 900px) {
    .matches-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
        flex-wrap: wrap;
    }
    
    .matches-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0.5rem;
    }
    
    .match-card {
        width: 100%;
        max-width: 100%;
    }
    
    .match-teams-container {
        gap: 0.3rem;
    }
    
    .team-with-logo {
        max-width: 120px;
    }
    
    .team-logo {
        width: 50px;
        height: 50px;
    }
    
    .score {
        font-size: 2rem;
        min-width: 60px;
    }
    
    .team-name {
        font-size: 0.95rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
        font-size: 2rem;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .logo img {
        height: 35px;
    }
    
    .nav-menu {
        flex-direction: row;
        gap: 0.3rem;
        width: auto;
        justify-content: flex-end;
        flex-wrap: nowrap;
        font-size: 0.85rem;
    }
    
    .nav-menu a {
        padding: 0.4rem 0.7rem;
        font-size: 0.85rem;
    }
    
    .btn-discord,
    .btn-login {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .user-info {
        gap: 0.5rem;
        font-size: 0.85rem;
    }
    
    .user-avatar {
        width: 30px;
        height: 30px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.1rem;
    }
    
    .logo img {
        height: 30px;
    }
    
    .nav-menu {
        gap: 0.2rem;
        font-size: 0.7rem;
    }
    
    .nav-menu a {
        padding: 0.3rem 0.5rem;
        font-size: 0.75rem;
    }
    
    .btn-discord,
    .btn-login {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .user-info {
        font-size: 0.75rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-logo {
        height: 100px;
    }
}

/* Loading Animation */
.loading {
    text-align: center;
    padding: 2rem;
    color: var(--text-secondary);
}

.loading::after {
    content: '...';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

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

.modal-content {
    background: var(--secondary-color);
    margin: 2rem auto;
    padding: 2rem;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

.modal-close {
    color: var(--text-secondary);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 1;
}

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

.modal-body {
    padding-top: 1rem;
}

.modal-header-content {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.modal-match-teams {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}

.modal-team {
    text-align: center;
    flex: 1;
}

.modal-team-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
}

.modal-team-logo:hover {
    transform: scale(1.1);
}

.modal-team-logo.enemy-logo {
    filter: grayscale(100%) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.modal-team .team-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-align: center;
    display: block;
}

.modal-team .team-score {
    font-size: 3rem;
    font-weight: bold;
    color: var(--text-secondary);
}

.modal-team .team-score.winner {
    color: #27ae60;
}

.modal-team .team-score.loser {
    color: #e74c3c;
}

.vs-divider {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin: 0 2rem;
}

.modal-section {
    margin: 2rem 0;
}

.modal-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.map-results {
    display: grid;
    gap: 0.8rem;
}

.map-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border-left: 3px solid var(--border-color);
}

.map-result.royalty-win {
    border-left-color: var(--accent-color);
}

.map-result.opponent-win {
    border-left-color: var(--text-secondary);
}

.map-name {
    font-weight: bold;
    font-size: 1.1rem;
}

.map-score {
    font-size: 1.2rem;
    font-weight: bold;
}

.map-score.royalty-win {
    color: var(--accent-color);
}

.map-score.opponent-win {
    color: var(--text-secondary);
}

.stats-table-container {
    overflow-x: auto;
}

.stats-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.stats-table thead tr {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 2px solid var(--border-color);
}

.stats-table th {
    padding: 0.8rem;
    text-align: center;
    color: var(--text-secondary);
    font-weight: 600;
}

.stats-table th:first-child {
    text-align: left;
}

.stats-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s;
}

.stats-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.stats-table td {
    padding: 0.8rem;
    text-align: center;
}

.stats-table td:first-child {
    text-align: left;
}

.stats-table td.positive {
    color: var(--success-color);
    font-weight: bold;
}

.stats-table td.negative {
    color: var(--danger-color);
    font-weight: bold;
}

.stats-table td.high-rating {
    color: var(--success-color);
    font-weight: bold;
}

.veto-list {
    display: grid;
    gap: 0.5rem;
}

.veto-item {
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    font-size: 0.95rem;
}

.veto-order {
    color: var(--text-secondary);
    margin-right: 0.5rem;
    font-weight: bold;
}

.veto-team {
    color: var(--text-color);
    font-weight: bold;
    margin-right: 0.3rem;
}

.veto-action {
    color: var(--text-secondary);
    margin-right: 0.3rem;
}

.veto-map {
    color: var(--accent-color);
    font-weight: bold;
}

.veto-time {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-left: 0.3rem;
}

.modal-footer-info {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.modal-footer-info p {
    margin: 0.5rem 0;
}

.modal-link {
    color: var(--success-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

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

.btn-match-link {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
}

.btn-match-link:hover {
    transform: translateY(-3px);
    background: #d63851;
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.5);
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        padding: 1.5rem;
        margin: 1rem auto;
    }
    
    .modal-team .team-name {
        font-size: 1.2rem;
    }
    
    .modal-team .team-score {
        font-size: 2rem;
    }
    
    .vs-divider {
        margin: 0 1rem;
        font-size: 1.2rem;
    }
    
    .stats-table {
        font-size: 0.85rem;
    }
    
    .stats-table th,
    .stats-table td {
        padding: 0.5rem 0.3rem;
    }
}

/* Pagination Controls */
.pagination-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1rem;
}

.pagination-buttons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-btn {
    background: var(--secondary-color);
    color: var(--text-color);
    border: 2px solid var(--border-color);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 45px;
}

.pagination-btn:hover:not(:disabled) {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.4);
}

.pagination-btn.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.4);
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-ellipsis {
    color: var(--text-secondary);
    padding: 0 0.5rem;
    font-weight: bold;
}

.pagination-info {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Pagination Responsive */
@media (max-width: 768px) {
    .pagination-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.9rem;
        min-width: 40px;
    }
    
    .pagination-buttons {
        gap: 0.3rem;
    }
}
