:root {
    --primary: #9c27b0;
    --secondary: #673ab7;
    --dark: #121212;
    --darker: #0a0a0a;
    --light: #f8f9fa;
    --accent: #ff5722;
    --accent2: #4caf50;
    --text: rgba(255,255,255,0.9);
    --text-secondary: rgba(255,255,255,0.7);
}

body {
    font-family: 'Rajdhani', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark);
    color: var(--text);
    background-image:
        radial-gradient(circle at 25% 25%, rgba(103, 58, 183, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(156, 39, 176, 0.1) 0%, transparent 50%);
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--darker);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.3;
}

.main-header {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(156, 39, 176, 0.3);
}

.logo-container {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    perspective: 1000px;
    text-align: center;
}

.logo {
    max-width: 400px;
    filter: drop-shadow(0 0 15px rgba(156, 39, 176, 0.7));
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotateY(0deg); }
    50% { transform: translateY(-20px) rotateY(5deg); }
}

.server-card {
    background: linear-gradient(145deg, rgba(30, 30, 40, 0.8) 0%, rgba(20, 20, 30, 0.9) 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(156, 39, 176, 0.3);
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 2rem;
}

.server-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(156, 39, 176, 0.4);
    border-color: rgba(156, 39, 176, 0.6);
}

.server-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.server-card-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.server-card-body {
    padding: 2rem;
}

.server-status {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-online {
    background-color: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
}

.status-offline {
    background-color: rgba(244, 67, 54, 0.2);
    color: #f44336;
    box-shadow: 0 0 10px rgba(244, 67, 54, 0.3);
}

.countdown-container {
    background: rgba(10, 10, 20, 0.7);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid rgba(156, 39, 176, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.countdown-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(156, 39, 176, 0.3);
}

.countdown-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.feature-card {
    background: rgba(30, 30, 40, 0.6);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(156, 39, 176, 0.5);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.btn-mu {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-mu:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(156, 39, 176, 0.6);
    color: white;
}

.btn-mu::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-mu:hover::before {
    left: 100%;
}

.btn-discord {
    background: #7289da;
}

.btn-register {
    background: #fc0000;
}

.btn-facebook {
    background: #3b5998;
}

.btn-download {
    background: linear-gradient(135deg, #ff5722, #ff9800);
}

.server-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.server-tab {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    color: white;
}

.server-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.4);
}

.server-tab.inactive {
    background: rgba(255, 255, 255, 0.1);
}

.server-tab.disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.server-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.server-content.active {
    display: block;
}

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

.stats-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
}

.stats-table th, .stats-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-table th {
    background: rgba(156, 39, 176, 0.2);
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.stats-table tr:last-child td {
    border-bottom: none;
}

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

.main-footer {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(156, 39, 176, 0.3);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.4);
}

@media (max-width: 768px) {
    .logo {
        max-width: 250px;
    }
    
    .countdown {
        flex-wrap: wrap;
    }
    
    .countdown-item {
        min-width: 60px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
}

canvas {
    display: block;
    vertical-align: bottom;
}

.glow {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px rgba(156, 39, 176, 0.5);
    }
    to {
        text-shadow: 0 0 15px rgba(156, 39, 176, 0.8), 0 0 20px rgba(156, 39, 176, 0.6);
    }
}

.swiper {
    width: 100%;
    height: 100%;
    padding: 20px 0;
}

.swiper-slide {
    background: rgba(30, 30, 40, 0.6);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.swiper-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(156, 39, 176, 0.3);
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    transform: scale(1.2);
}
.ribbon {
    width: 150px; /* Lățimea panglicii */
    height: 30px; /* Înălțimea panglicii */
    background-color: var(--accent2); /* Culoarea panglicii, poți folosi o variabilă sau o culoare fixă */
    position: absolute;
    top: 20px; /* Distanța de sus a cardului */
    left: -40px; /* Distanța de la stânga, negativă pentru a roti și a o alinia frumos */
    text-align: center;
    line-height: 30px; /* Centrează textul vertical */
    font-size: 14px;
    font-weight: bold;
    color: #fff; /* Culoarea textului */
    transform: rotate(-45deg); /* Rotește panglica pentru a crea efectul */
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); /* Adaugă o umbră subtilă */
    z-index: 10; /* Asigură că panglica este deasupra conținutului cardului */
}

.ribbon span {
    display: block;
    width: 100%;
    transform: translateY(0); /* Corecție pentru a centra textul după rotație */
}

/* Efectul de îndoire a panglicii */
.ribbon:before,
.ribbon:after {
    content: '';
    position: absolute;
    top: 100%;
    border-style: solid;
    z-index: -1; /* Asigură că colțurile sunt sub panglica principală */
}

.ribbon:before {
    left: 0;
    border-color: transparent var(--dark-purple) transparent transparent; /* Culoarea umbrei din stânga */
    border-width: 0 10px 10px 0; /* Ajustează dimensiunea umbrei */
}

.ribbon:after {
    right: 0;
    border-color: transparent transparent transparent var(--dark-purple); /* Culoarea umbrei din dreapta */
    border-width: 0 0 10px 10px; /* Ajustează dimensiunea umbrei */
}

/* Stil pentru baza panglicii, creând un efect de "coadă" */
.ribbon-bottom-left {
    position: absolute;
    bottom: 0;
    left: 0;
    border-width: 10px 10px 0 0;
    border-style: solid;
    border-color: var(--dark-purple) transparent transparent transparent; /* Culoarea de bază a "cozii" */
    display: block;
    width: 0;
}

.status-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
    animation: pulse 2s infinite;
}

.status-online .status-indicator {
    background-color: #4caf50;
    box-shadow: 0 0 5px #4caf50;
}

.status-offline .status-indicator {
    background-color: #f44336;
    box-shadow: 0 0 5px #f44336;
}

@keyframes pulse {
    0% { transform: scale(0.95); }
    50% { transform: scale(1.1); }
    100% { transform: scale(0.95); }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.comparison-table th, .comparison-table td {
    padding: 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
    background: rgba(156, 39, 176, 0.2);
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.comparison-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
}

.comparison-table tr:hover {
    background: rgba(156, 39, 176, 0.1);
}

.server-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.badge-reset {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
}

.badge-nonreset {
    background: rgba(33, 150, 243, 0.2);
    color: #2196f3;
}

.badge-pvp {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
}

.badge-pve {
    background: rgba(255, 152, 0, 0.2);
    color: #ff9800;
}

.info-card {
    background: rgba(30, 30, 40, 0.6);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.info-card h5 {
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.info-card h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.server-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    margin: 0 10px;
}

.server-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

.server-selection {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    background: rgba(20, 20, 30, 0.7);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(156, 39, 176, 0.3);
}

.server-label {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.server-section {
    display: none;
    animation: fadeIn 0.5s ease;
}

.server-section.active {
    display: block;
}

.server-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: rgba(30, 30, 40, 0.6);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    border-top: 3px solid var(--primary);
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    margin: 0.5rem 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.features-carousel {
    padding: 20px 0;
}

.feature-slide {
    background: rgba(30, 30, 40, 0.6);
    border-radius: 10px;
    padding: 1.5rem;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-slide i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.feature-slide h5 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-slide .features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.feature-slide .features-list li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
}
.feature-slide .features-list li i {
    font-size: 0.9rem;
    margin-right: 0.75rem;
    color: var(--accent2);
    margin-top: 0.2em;
}

.progress-container {
    margin: 1.5rem 0;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progress-bar {
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 4px;
    transition: width 1s ease;
}

.event-card {
    background: rgba(30, 30, 40, 0.6);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.event-time {
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.event-time i {
    margin-right: 0.5rem;
}

.ranking-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.ranking-table th, .ranking-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ranking-table th {
    background: rgba(156, 39, 176, 0.2);
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.ranking-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
}

.ranking-table tr:hover {
    background: rgba(156, 39, 176, 0.1);
}

.rank {
    font-weight: bold;
    color: var(--primary);
}

.server-media {
    margin: 2rem 0;
}

.media-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.media-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.server-toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
}

.server-toggle-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.4);
}

.server-toggle-btn i {
    margin-right: 0.5rem;
}

.info-box {
    background: rgba(30, 30, 40, 0.6);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-top: 3px solid var(--primary);
}

.info-box-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary);
    display: flex;
    align-items: center;
}

.info-box-title i {
    margin-right: 0.5rem;
}

.command-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.command-item {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.command-name {
    font-weight: bold;
    color: var(--primary);
    font-family: 'Courier New', monospace;
}

.command-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.3rem;
}

.admin-section {
    background: rgba(30, 30, 40, 0.8);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid rgba(156, 39, 176, 0.3);
}

.admin-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.admin-title i {
    margin-right: 0.5rem;
}

.rules-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rule-item {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: flex-start;
}

.rule-number {
    background: var(--primary);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.rule-text {
    flex-grow: 1;
}

.faq-item {
    margin-bottom: 1.5rem;
    background: rgba(30, 30, 40, 0.6);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 1rem 1.5rem;
    background: rgba(156, 39, 176, 0.2);
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(156, 39, 176, 0.3);
}

.faq-answer {
    padding: 1rem 1.5rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 200px;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 1rem;
    color: white;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

.testimonial-slider {
    padding: 20px 0;
}

.testimonial-slide {
    background: rgba(30, 30, 40, 0.6);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.author-info {
    flex-grow: 1;
}

.author-name {
    font-weight: bold;
    margin-bottom: 0.2rem;
}

.author-rank {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.server-progress {
    margin: 2rem 0;
}

.progress-track {
    position: relative;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    margin: 1.5rem 0;
    overflow: hidden;
}

.progress-marker {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 5px;
    transition: width 1s ease;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 2rem auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--primary);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    top: 15px;
    z-index: 1;
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.left::after {
    right: -10px;
}

.right::after {
    left: -10px;
}

.timeline-content {
    padding: 20px;
    background: rgba(30, 30, 40, 0.6);
    border-radius: 10px;
    border-left: 3px solid var(--primary);
}

.timeline-date {
    color: var(--primary);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.donation-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.tier-card {
    background: rgba(30, 30, 40, 0.6);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(156, 39, 176, 0.3);
    border-color: rgba(156, 39, 176, 0.5);
}

.tier-name {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.tier-price {
    font-size: 2rem;
    font-weight: bold;
    margin: 1rem 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.tier-feature {
    padding: 0.5rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.tier-feature:last-child {
    border-bottom: none;
}

.vote-card {
    background: rgba(30, 30, 40, 0.6);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.vote-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.vote-logo {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    margin-right: 1.5rem;
    object-fit: cover;
}

.vote-info {
    flex-grow: 1;
}

.vote-name {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.vote-cooldown {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.staff-card {
    background: rgba(30, 30, 40, 0.6);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.staff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.staff-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    margin: 0 auto 1rem;
}

.staff-name {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.staff-role {
    font-size: 0.8rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.staff-social {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.staff-social a {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.staff-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.small.text-muted {
    color: white !important;
}
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.features-list li {
    padding: 0.2rem 0;
    display: flex;
    align-items: flex-start;
}
.features-list li i {
    margin-right: 0.75rem;
    color: var(--accent2);
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 0.2em;
}

.dropdown-menu {
    background-color: var(--darker);
    border: 1px solid rgba(156, 39, 176, 0.3);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    padding: 0.5rem 0;
}

.dropdown-item {
    color: var(--text);
    padding: 0.75rem 1.5rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-item:hover {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
}

.dropdown-item.disabled {
    color: var(--text-secondary);
    opacity: 0.7;
    cursor: not-allowed;
    background-color: transparent;
}

.ranking-table-container {
    padding-top: 1rem;
}

.ranking-table-container table {
    width: 100%;
    border-collapse: collapse;
}

.ranking-table-container th, .ranking-table-container td {
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.75rem;
    text-align: left;
}

.ranking-table-container th {
    background-color: rgba(156, 39, 176, 0.2);
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.75rem;
}

.ranking-table-container tbody tr:nth-child(odd) {
    background-color: rgba(255, 255, 255, 0.02);
}

.ranking-table-container tbody tr:hover {
    background-color: rgba(156, 39, 176, 0.1);
}

/* Stiluri pentru alertele dinamice */
.custom-alert {
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.custom-alert.show {
    opacity: 1;
    transform: translateY(0);
}

.custom-alert-success {
    background-color: rgba(76, 175, 80, 0.2); /* Accent2 cu transparență */
    color: #4caf50; /* Accent2 */
    border: 1px solid rgba(76, 175, 80, 0.5);
}

.custom-alert-error {
    background-color: rgba(244, 67, 54, 0.2); /* Roșu cu transparență */
    color: #f44336; /* Roșu */
    border: 1px solid rgba(244, 67, 54, 0.5);
}

.custom-alert-info {
    background-color: rgba(33, 150, 243, 0.2); /* Albastru cu transparență */
    color: #2196f3; /* Albastru */
    border: 1px solid rgba(33, 150, 243, 0.5);
}

.custom-alert-warning {
    background-color: rgba(255, 152, 0, 0.2); /* Portocaliu cu transparență */
    color: #ff9800; /* Portocaliu */
    border: 1px solid rgba(255, 152, 0, 0.5);
}

.custom-alert .close-btn {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 1rem;
    line-height: 1;
}

.custom-alert .alert-icon {
    margin-right: 0.75rem;
}