.preview-container {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    border-radius: 24px;
    padding: 32px;
    width: 500px;
    max-width: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    margin: 0 auto;
    box-sizing: border-box;
}

.preview-container.preview-container-tools{
margin-top: 20px;
}

.preview-container.preview-container-home{
    margin-top: 40px;
    margin-bottom: 40px;
}


.header {
    text-align: center;
    margin-bottom: 32px;
}

.header img {
    width: 150px;
    max-width: 100%;
}

.title {
    font-size: 20px;
    margin-bottom: 8px;
    color: #c9c9c9;
}

.list-placeholder {
    border-radius: 12px;
    padding:  5px 20px 15px 20px;
    text-align: center;
}

.list-skeleton {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.skeleton-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.skeleton-item:hover {
    background: #222222;
    border-color: #444444;
}

.podium-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skeleton-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(90deg, #2a2a2a 0%, #3a3a3a 50%, #2a2a2a 100%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
    position: relative;
    z-index: 2;
}

.podium-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    z-index: 3;
    border: 2px solid #111111;
}

.skeleton-item:nth-child(1) .podium-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
}

.skeleton-item:nth-child(2) .podium-badge {
    background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 100%);
    color: #000000;
}

.skeleton-item:nth-child(3) .podium-badge {
    background: linear-gradient(135deg, #cd7f32 0%, #daa520 100%);
    color: #ffffff;
}

.skeleton-content {
    flex: 1;
}

.skeleton-line {
    height: 10px;
    border-radius: 6px;
    background: linear-gradient(90deg, #2a2a2a 0%, #3a3a3a 50%, #2a2a2a 100%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
    margin-bottom: 8px;
}

.skeleton-line:last-child {
    margin-bottom: 0;
    width: 60%;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.preview-overlay {
    padding: 20px 32px;
    text-align: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.preview-text {
    color: #9ca3af;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.preview-cta {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.preview-cta::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: left 0.5s ease;
}

.preview-cta:hover::before {
    left: 100%;
}

.preview-cta:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.preview-cta:active {
    transform: translateY(0);
}

.preview-cta::after {
    content: '→';
    transition: transform 0.2s ease;
}

.preview-cta:hover::after {
    transform: translateX(3px);
}

@media (max-width: 480px) {
    .preview-container {
        padding: 24px;
    }
    
    .skeleton-item {
        padding: 12px;
        gap: 12px;
    }
    
    .skeleton-avatar {
        width: 40px;
        height: 40px;
    }
    
    .podium-badge {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
    
    .title {
        font-size: 24px;
    }
}