/* ===== intro.css ===== */

/* Optimizări de performanță */
.card-server, .item-card, .fuse-btn {
    will-change: transform;
}

@keyframes electricMove {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.card-server:hover::before {
    animation: electricMove 3s linear infinite;
}

/* Animații pentru refresh */
@keyframes fadeUpdate {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}

.top-player-item, .feed-item {
    transition: all 0.2s ease;
}

.refreshing {
    animation: fadeUpdate 0.3s ease;
}

/* ===== Cursor normal ===== */
body, html {
    cursor: url("/images/cursor_1.png?v=1"), auto !important;
    font-family: Arial, sans-serif;
    color: #fff;
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
}

/* ===== Cursor hover ===== */
a, button, .btn, input[type=submit], li, .clickable, .card, .fuse-btn {
    cursor: url("/images/cursor_2.webp?v=1"), pointer !important;
}

/* VIDEO BACKGROUND */
.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -2;
}

.overlay { 
    position: fixed; 
    inset: 0; 
    background: rgba(0, 0, 0, 0.7); 
    z-index: -1; 
}

/* MAIN LAYOUT */
.main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 20px 0 40px;
}

/* HEADER */
header {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

header a {
    display: inline-block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

header a:hover {
    transform: scale(1.05) translateY(-5px);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.7));
}

header img {
    height: 130px;
    display: block;
}

/* CARDS CONTAINER */
.server-cards {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    padding: 20px 20px 30px;
}

/* CARD STYLES - Alb-gri */
.card-server {
    width: 300px;
    height: 380px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-server:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 255, 255, 0.3);
}

.card-server-110, .card-server-60 {
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.8)), url('https://rexall.online/images/logo.png');
    background-size: cover, 170px;
    background-repeat: no-repeat, no-repeat;
    background-position: center, center 25%;
}

.card-server-60 {
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.8)), url('https://rexall.online/images/logo.png');
}

.card-body {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.card-title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.card-cap {
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
    margin: 5px 0;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.card-cap span {
    font-size: 26px;
    opacity: 0.8;
}

.card-description {
    font-size: 16px;
    opacity: 0.9;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 20px;
    border-radius: 40px;
    display: inline-block;
    margin: 15px auto 0;
    border: 2px solid #ffffff;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    font-weight: bold;
    backdrop-filter: blur(5px);
}

/* Electric effect on hover */
.card-server::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2), transparent 70%);
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.card-server:hover::before {
    opacity: 1;
    animation: electricMove 3s linear infinite;
}

/* Thread Button */
.btn-thread {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 30px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid #ffffff;
    border-radius: 30px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
    font-weight: bold;
    letter-spacing: 1px;
}

.btn-thread:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* ===== ALCHEMY GAME SECTION ===== */
.alchemy-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0 30px;
}

.alchemy-wrapper {
    background: rgba(15, 15, 20, 0.95);
    padding: 25px;
    width: 90%;
    max-width: 800px;
    border: 2px solid #ffffff;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.alchemy-wrapper h1 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 28px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.controls { margin-bottom: 20px; }

select { 
    padding: 8px 15px; 
    background: #222; 
    color: #fff; 
    border: 1px solid #ffffff; 
    border-radius: 5px; 
    font-size: 16px; 
    cursor: pointer;
}

select:hover { box-shadow: 0 0 15px rgba(255, 255, 255, 0.3); }

.alchemy-box {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 40px;
    margin: 20px 0; 
    padding: 20px; 
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px; 
    border: 1px solid #ffffff;
}

.weapon-area {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, #333, #000);
    border: 2px solid #ffffff;
    border-radius: 10px;
}

.weapon-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.weapon {
    max-width: 120px;
    max-height: 120px;
    width: auto;
    height: auto;
    position: relative;
    z-index: 5;
    transition: all 0.3s ease;
}

.glow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 10;
}

.weapon-glow-effect {
    width: 65%;
    height: 65%;
    object-fit: contain;
    object-position: center;
    opacity: 0.9;
    mix-blend-mode: screen;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { 
        opacity: 0.7; 
        transform: scale(1);
    }
    50% { 
        opacity: 1; 
        transform: scale(1.03);
    }
}

.plus {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 8px #ffffff, 0 0 15px #ffffff;
    z-index: 20;
}

.glow-0 { filter: drop-shadow(0 0 0px transparent); }
.glow-3 { filter: drop-shadow(0 0 15px #00ffff); } 
.glow-5 { filter: drop-shadow(0 0 20px #aa00ff); } 
.glow-7 { filter: drop-shadow(0 0 25px #ffcc00); } 
.glow-9 { filter: drop-shadow(0 0 30px #ff0000); } 

.alchemy-center { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 15px; 
}

.elixir { 
    width: 60px; 
    filter: drop-shadow(0 0 10px #ffffff); 
}

.fuse-btn {
    padding: 12px 30px; 
    font-size: 18px; 
    font-weight: bold; 
    cursor: pointer;
    background: linear-gradient(180deg, #444444, #222222); 
    color: #fff;
    border: 2px solid #ffffff; 
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3); 
    text-transform: uppercase;
}

.fuse-btn:hover:not(:disabled) { 
    transform: scale(1.05);
    background: linear-gradient(180deg, #666666, #333333);
}

.fuse-btn:disabled { 
    background: #555; 
    border-color: #333; 
    cursor: not-allowed; 
    color: #888; 
    box-shadow: none;
}

.progress-container {
    width: 100%; 
    height: 15px; 
    background: #222; 
    border: 1px solid #ffffff; 
    border-radius: 10px; 
    margin: 20px 0; 
    overflow: hidden;
}

.progress-bar { 
    height: 100%; 
    width: 0%; 
    background: linear-gradient(90deg, #cccccc, #666666); 
}

.log-message { 
    font-size: 18px; 
    font-weight: bold; 
    margin: 15px 0; 
    min-height: 25px; 
}

.log-success { color: #00ff00; }
.log-fail { color: #ff3333; }
.log-fusing { color: #ffffff; }

.rates {
    margin-top: 20px;
}

.rates h2 { 
    color: #ffffff; 
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

table { 
    width: 100%; 
    border-collapse: collapse; 
    font-size: 14px; 
}

th, td { 
    border: 1px solid #ffffff; 
    padding: 8px; 
    text-align: center; 
}

th { 
    background-color: #333333; 
    color: #ffffff; 
}

td { 
    background-color: rgba(0, 0, 0, 0.5); 
}

.bonus-points {
    color: #00ff00;
    font-weight: bold;
}

/* Stats Section */
.stats-container {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.stats-box {
    flex: 1;
    min-width: 250px;
    background: rgba(0,0,0,0.5);
    border-radius: 10px;
    border: 1px solid #ffffff;
    padding: 15px;
}

.stats-box h3 {
    color: #ffffff;
    margin-bottom: 15px;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.top-player-item {
    display: flex;
    align-items: center;
    padding: 8px;
    margin: 5px 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    border-left: 3px solid #ffffff;
}

.top-player-rank {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-weight: bold;
}

.top-player-rank.gold {
    color: #ffd700;
    text-shadow: 0 0 10px #ffd700;
    font-size: 20px;
}

.top-player-rank.silver {
    color: #c0c0c0;
    text-shadow: 0 0 10px #c0c0c0;
    font-size: 20px;
}

.top-player-rank.bronze {
    color: #cd7f32;
    text-shadow: 0 0 10px #cd7f32;
    font-size: 20px;
}

.top-player-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-player-name {
    color: #ffffff;
    font-weight: bold;
}

.top-player-points {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 14px;
    color: #ffffff;
    font-weight: bold;
}

.feed-item {
    display: flex;
    align-items: center;
    padding: 8px;
    margin: 5px 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    font-size: 13px;
    border-left: 3px solid;
}

.feed-item.success {
    border-left-color: #00ff00;
}

.feed-item.fail {
    border-left-color: #ff3333;
}

.feed-time {
    color: #888;
    font-size: 10px;
    margin-right: 8px;
    min-width: 45px;
}

.feed-username {
    color: #ffffff;
    font-weight: bold;
    margin-right: 8px;
}

.feed-weapon {
    color: #fff;
    margin-right: 8px;
    font-size: 11px;
    background: rgba(255,255,255,0.1);
    padding: 2px 5px;
    border-radius: 3px;
}

.feed-result {
    margin-left: auto;
    font-weight: bold;
}

.feed-result.success {
    color: #00ff00;
}

.feed-result.fail {
    color: #ff3333;
}

.feed-plus {
    margin-left: 5px;
    padding: 2px 5px;
    border-radius: 3px;
    font-size: 11px;
}

.feed-plus.from {
    background: rgba(255,255,255,0.1);
}

.feed-plus.to {
    background: rgba(255,255,255,0.2);
    color: #ffffff;
}

/* FOOTER SOCIAL LINKS */
footer {
    width: 100%;
    padding: 30px 0 20px;
}

.nav {
    gap: 25px;
    padding: 0;
    margin: 0;
}

.nav-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
    opacity: 0.8;
    border: 2px solid transparent;
}

.nav-link:hover {
    opacity: 1;
    transform: scale(1.15) translateY(-5px);
    border-color: #ffffff;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
}

.facebook {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff"><path d="M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z"/></svg>');
}

.discord {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff"><path d="M20.317 4.37a19.791 19.791 0 0 0-4.885-1.515c-.21.387-.456.905-.623 1.315a18.347 18.347 0 0 0-5.518 0c-.167-.41-.413-.928-.624-1.315A19.762 19.762 0 0 0 3.86 4.37C1.784 7.334 1.136 10.217 1.46 13.057a20.06 20.06 0 0 0 6.054 2.457c.488-.66.922-1.363 1.296-2.106a12.97 12.97 0 0 1-2.042-.979c.171-.124.338-.252.5-.383a14.364 14.364 0 0 0 12.264 0c.163.131.33.259.5.383a12.97 12.97 0 0 1-2.043.979c.374.743.808 1.446 1.297 2.106a20.07 20.07 0 0 0 6.053-2.457c.374-3.294-.497-6.141-2.104-8.687zM8.02 11.29c-1.185 0-2.154-1.07-2.154-2.38 0-1.31.945-2.38 2.154-2.38 1.21 0 2.155 1.07 2.155 2.38 0 1.31-.945 2.38-2.155 2.38zm7.96 0c-1.185 0-2.154-1.07-2.154-2.38 0-1.31.945-2.38 2.154-2.38 1.21 0 2.155 1.07 2.155 2.38 0 1.31-.945 2.38-2.155 2.38z"/></svg>');
}

.youtube {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff"><path d="M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z"/></svg>');
}

/* Item Shop Section */
.item-shop {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.item-card {
    background: rgba(0,0,0,0.5);
    border: 1px solid #ffffff;
    border-radius: 10px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    min-width: 250px;
}

.item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.2);
    border-color: #ffd700;
}

.item-card.selected {
    border: 2px solid #ffd700;
    background: rgba(255,215,0,0.1);
}

.item-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.item-info {
    flex: 1;
}

.item-name {
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
}

.item-name.astral {
    color: #aa00ff;
    text-shadow: 0 0 10px #aa00ff;
}

.item-name.reinforce {
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}

.item-price {
    color: #ffd700;
    font-size: 14px;
    font-weight: bold;
}

.item-price span {
    color: #ffffff;
    font-weight: normal;
}

.item-effect {
    font-size: 12px;
    color: #888;
    margin-top: 3px;
}

.item-effect.good {
    color: #00ff00;
}

.item-badge {
    position: absolute;
    top: -5px;
    right: 10px;
    background: #ffd700;
    color: #000;
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: bold;
}

.active-items {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.active-item {
    background: rgba(255,215,0,0.2);
    border: 1px solid #ffd700;
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.active-item img {
    width: 20px;
    height: 20px;
}

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

.modal-content {
    background: linear-gradient(135deg, #1a1a1a, #000);
    border: 2px solid #ffffff;
    border-radius: 20px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.2);
    animation: modalPop 0.3s ease;
}

@keyframes modalPop {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.modal-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.modal h3 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.modal p {
    color: #cccccc;
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.5;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.modal-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.modal-btn-confirm {
    background: linear-gradient(135deg, #00ff00, #008800);
    color: #000;
}

.modal-btn-confirm:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.modal-btn-cancel {
    background: #444444;
    color: #fff;
    border: 1px solid #ff3333;
}

.modal-btn-cancel:hover {
    background: #ff3333;
    transform: scale(1.05);
}

.modal-btn-ok {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #000;
    min-width: 150px;
}

.modal-btn-ok:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    header img { height: 100px; }
    .card-server { width: 260px; height: 340px; }
    .card-title { font-size: 26px; }
    .card-cap { font-size: 44px; }
    .card-cap span { font-size: 22px; }
    .card-description { font-size: 14px; }
    
    .alchemy-box { gap: 20px; flex-direction: column; }
    .weapon-area { width: 140px; height: 140px; }
    .weapon-wrapper { width: 100px; height: 100px; }
    .weapon { max-width: 100px; max-height: 100px; }
}

@media (max-width: 600px) {
    .server-cards { gap: 30px; }
    .card-server { width: 280px; height: 360px; }
    .alchemy-wrapper { padding: 15px; }
    .nav { gap: 15px; }
    .nav-link { width: 40px; height: 40px; }
    .stats-container { flex-direction: column; }
}

/* ===== WEEKLY REWARDS SECTION - VERSIUNE MODIFICATĂ ===== */
.weekly-rewards {
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(0,0,0,0.3));
    border: 2px solid #ffffff;
    border-radius: 15px;
    padding: 20px 15px;
    margin-bottom: 25px;
    text-align: center;
    box-shadow: 0 0 30px rgba(255,255,255,0.1);
}

.weekly-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.weekly-icon {
    font-size: 28px;
}

.weekly-header h3 {
    color: #ffffff;
    margin: 0;
    font-size: 22px;
    text-shadow: 0 0 15px rgba(255,255,255,0.5);
}

.weekly-dates {
    color: #ff3333 !important;  /* Roșu FORȚAT */
    font-size: 15px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(255,51,51,0.3);
}

.weekly-dates span {
    color: #ffd700 !important;
    font-weight: bold;
}

.weekly-podium {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 20px;
    position: relative;
}

.podium-item {
    text-align: center;
    min-width: 100px;
    padding: 15px 10px;
    border-radius: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.podium-item:hover {
    transform: translateY(-3px);
}

/* Locul 1 - Sus în mijloc */
.podium-item.first {
    order: 2;
    transform: translateY(-20px);
    background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(0,0,0,0.3));
    border-color: #ffd700;
    min-width: 120px;
    padding: 20px 10px;
    z-index: 3;
    box-shadow: 0 0 20px rgba(255,215,0,0.2);
}

/* Locul 2 - Stânga */
.podium-item.second {
    order: 1;
    transform: translateY(0);
    background: linear-gradient(135deg, rgba(192,192,192,0.1), rgba(0,0,0,0.3));
    border-color: #c0c0c0;
    min-width: 90px;
}

/* Locul 3 - Dreapta */
.podium-item.third {
    order: 3;
    transform: translateY(0);
    background: linear-gradient(135deg, rgba(205,127,50,0.1), rgba(0,0,0,0.3));
    border-color: #cd7f32;
    min-width: 90px;
}

.medal {
    font-size: 42px;
    margin-bottom: 8px;
}

.podium-item.first .medal {
    font-size: 52px;
}

.podium-name {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    word-break: break-word;  /* Permite împărțirea cuvintelor lungi */
    max-width: 120px;        /* Mărește sau elimină complet */
    line-height: 1.2;
}

.podium-item.first .podium-name {
    font-size: 18px;
    max-width: 140px;        /* Mărește pentru locul 1 */
    word-break: break-word;
}

.podium-item.second .podium-name {
    color: #c0c0c0;
    text-shadow: 0 0 10px #c0c0c0;
}

.podium-item.third .podium-name {
    color: #cd7f32;
    text-shadow: 0 0 10px #cd7f32;
}

.podium-value {
    font-size: 20px;
    font-weight: 800;
    background: rgba(0,0,0,0.5);
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-block;
}

.podium-item.first .podium-value {
    font-size: 24px;
    color: #ffd700;
    border: 1px solid #ffd700;
}

.podium-item.second .podium-value {
    color: #c0c0c0;
    border: 1px solid #c0c0c0;
}

.podium-item.third .podium-value {
    color: #cd7f32;
    border: 1px solid #cd7f32;
}

.weekly-prizes {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 15px 0 15px;
    flex-wrap: wrap;
}

.prize-item {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.05);
    padding: 6px 15px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.15);
}

.prize-medal {
    font-size: 18px;
}

.prize-text {
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
}

.prize-item:nth-child(1) .prize-text {
    color: #ffd700;
}

.prize-item:nth-child(2) .prize-text {
    color: #c0c0c0;
}

.prize-item:nth-child(3) .prize-text {
    color: #cd7f32;
}

.weekly-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.note-icon {
    font-size: 16px;
}

.note-text {
    color: #ffaa00;
    font-size: 12px;
}

/* Responsive pentru mobile */
@media (max-width: 768px) {
    .weekly-podium {
        gap: 5px;
    }
    
    .podium-item {
        min-width: 80px;
        padding: 10px 5px;
    }
    
    .podium-item.first {
        min-width: 100px;
        transform: translateY(-15px);
    }
    
    .medal {
        font-size: 36px;
    }
    
    .podium-item.first .medal {
        font-size: 46px;
    }
    
    .podium-name {
        font-size: 14px;
    }
    
    .podium-item.first .podium-name {
        font-size: 16px;
    }
    
    .podium-value {
        font-size: 16px;
    }
    
    .podium-item.first .podium-value {
        font-size: 20px;
    }
    
    .weekly-prizes {
        gap: 10px;
    }
    
    .prize-item {
        padding: 5px 12px;
    }
    
    .prize-text {
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    .weekly-prizes {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .prize-item {
        width: auto;
    }
}
/* BACKGROUND IMAGE (în loc de video) */
.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}