/* ==================== LINK ALTERNATIF BOX - YELLOW CARTOON THEME ==================== */
.link-alt-container {
    max-width: 420px;
    width: 100%;
    padding-top: 20px;
    margin: 0 auto;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.link-alt-card {
    background: linear-gradient(145deg, #fef08c, #fde047);
    border: 6px solid #1e40af;
    border-radius: 32px;
    box-shadow: 0 25px 50px -12px rgba(30, 64, 175, 0.4), 0 0 30px rgba(250, 204, 21, 0.5);
    overflow: hidden;
}

.link-alt-header {
    background: linear-gradient(to bottom right, #3b82f6, #1e40af);
    padding: 24px 24px 20px;
    border-bottom: 4px solid #fef08c;
}

.link-alt-title {
    display: flex;
    align-items: center;
    gap: 16px;
}

.link-alt-icon {
    width: 52px;
    height: 52px;
    background: #fef08c;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(250, 204, 21, 0.6);
    font-size: 28px;
}

.link-alt-title-text h2 {
    margin: 0;
    font-size: 23px;
    font-weight: 900;
    color: #fef08c;
    letter-spacing: -0.5px;
    text-shadow: 3px 3px 0 #1e40af;
}

.link-alt-title-text p {
    margin: 3px 0 0;
    font-size: 13.5px;
    color: #bae6fd;
    font-weight: 700;
}

.link-alt-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fef08c;
    color: #1e40af;
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 900;
    border: 3px solid #1e40af;
}

.link-alt-badge-dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 10px #22c55e;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.link-alt-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: #fefce8;
}

.link-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    border: 4px solid #1e40af;
    border-radius: 20px;
    padding: 14px 18px;
    transition: all 0.2s ease;
    box-shadow: 0 6px 15px rgba(30, 64, 175, 0.15);
}

.link-row:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 12px 25px rgba(30, 64, 175, 0.25);
}

.link-row.recommended {
    border-color: #eab308;
    box-shadow: 0 0 25px rgba(234, 179, 8, 0.4);
}

.link-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.link-info svg {
    margin-top: 3px;
    flex-shrink: 0;
    color: #1e40af;
}

.link-url {
    font-size: 14.5px;
    color: #1e40af;
    font-weight: 800;
    word-break: break-all;
    line-height: 1.35;
}

.link-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}

.badge {
    font-size: 10px;
    font-weight: 900;
    padding: 3px 10px;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    height: 20px;
    border: 2px solid #1e40af;
}

.badge-recommend {
    background-color: #fef08c;
    color: #1e40af;
}

.badge-fast {
    background-color: #bae6fd;
    color: #1e40af;
}

.badge-stable {
    background-color: #86efac;
    color: #1e40af;
}

.badge-update {
    background-color: #fde047;
    color: #1e40af;
}

.link-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 12px;
    flex-shrink: 0;
}

.btn-copy {
    display: flex;
    align-items: center;
    gap: 6px;
    background: white;
    color: #1e40af;
    border: 3px solid #1e40af;
    padding: 9px 14px;
    font-size: 12px;
    font-weight: 800;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-copy:hover {
    background-color: #fef08c;
    transform: scale(1.08);
}

.btn-copy:active {
    transform: scale(0.92);
}

.btn-open {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(90deg, #fef08c, #facc15);
    color: #1e40af;
    border: 3px solid #1e40af;
    padding: 9px 18px;
    font-size: 12px;
    font-weight: 800;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 6px 0 #1e40af;
}

.btn-open:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 0 #1e40af;
}

.btn-open:active {
    transform: translateY(2px);
    box-shadow: 0 4px 0 #1e40af;
}

.link-alt-footer {
    background: #1e40af;
    padding: 16px 24px;
    border-top: 4px solid #fef08c;
}

.footer-content {
    display: flex;
    gap: 10px;
    font-size: 12.5px;
    color: #bae6fd;
    line-height: 1.5;
    font-weight: 600;
}

.footer-content svg {
    margin-top: 1px;
    flex-shrink: 0;
}


/* ==================== RTP BOX - YELLOW CARTOON THEME ==================== */
.rtp-container {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.rtp-card {
    background: linear-gradient(145deg, #fef08c, #fde047);
    border: 6px solid #1e40af;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(30, 64, 175, 0.4), 0 0 30px rgba(250, 204, 21, 0.5);
}

.rtp-header {
    background: linear-gradient(to right, #3b82f6, #1e40af);
    padding: 20px 24px;
    border-bottom: 4px solid #fef08c;
}

.rtp-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rtp-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rtp-icon {
    width: 48px;
    height: 48px;
    background: #fef08c;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(250, 204, 21, 0.5);
    font-size: 26px;
}

.rtp-title h2 {
    margin: 0;
    font-size: 21px;
    font-weight: 900;
    color: #fef08c;
    letter-spacing: -0.4px;
    text-shadow: 3px 3px 0 #1e40af;
}

.rtp-title span {
    font-size: 13px;
    color: #bae6fd;
    font-weight: 700;
}

.rtp-main {
    padding: 32px 24px 24px;
    text-align: center;
    background: #fefce8;
}

.rtp-big-number {
    font-size: 58px;
    font-weight: 900;
    color: #1e40af;
    line-height: 1;
    margin: 0;
    text-shadow: 4px 4px 0 #fef08c;
}

.rtp-label {
    font-size: 14.5px;
    color: #1e40af;
    margin-top: 8px;
    font-weight: 700;
}

.rtp-update {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fef08c;
    color: #1e40af;
    font-size: 12px;
    padding: 6px 16px;
    border-radius: 9999px;
    margin-top: 14px;
    font-weight: 800;
    border: 3px solid #1e40af;
}

.rtp-body {
    padding: 0 24px 26px;
    background: #fefce8;
}

.rtp-section-title {
    font-size: 14px;
    font-weight: 800;
    color: #1e40af;
    margin-bottom: 16px;
    padding-left: 6px;
}

.rtp-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    border: 4px solid #1e40af;
    border-radius: 18px;
    padding: 14px 18px;
    margin-bottom: 10px;
    transition: all 0.2s ease;
}

.rtp-row:hover {
    transform: scale(1.03);
}

.rtp-game {
    font-size: 14.5px;
    color: #1e40af;
    font-weight: 800;
}

.rtp-value {
    font-size: 16px;
    font-weight: 900;
    color: #1e40af;
    min-width: 60px;
    text-align: right;
}

.rtp-bar-container {
    width: 100%;
    height: 8px;
    background-color: #e0f2fe;
    border-radius: 9999px;
    margin-top: 10px;
    overflow: hidden;
    border: 2px solid #1e40af;
}

.rtp-bar {
    height: 100%;
    background: linear-gradient(to right, #fef08c, #facc15);
    border-radius: 9999px;
    transition: width 0.4s ease;
}

.rtp-footer {
    background: #1e40af;
    padding: 16px 24px;
    border-top: 4px solid #fef08c;
    text-align: center;
}

.rtp-footer-text {
    font-size: 12px;
    color: #bae6fd;
    font-weight: 600;
}


/* ==================== SITE THEME - YELLOW CARTOON ==================== */
.site-header {
    background: linear-gradient(to right, #1e40af, #3b82f6);
    border-bottom: 4px solid #fef08c;
}

.home-info-container,
.telegram-banner-container {
    background: #1e40af;
    border-color: #fef08c;
}

.site-footer {
    background-color: #1e40af;
    border-top: 4px solid #fef08c;
}

.topbar-container {
    background: #1e40af;
}