/* Giveaway Frontend Design System - Elite Glassmorphism Edition */

:root {
    --gs-primary: #f97316;
    --gs-primary-dark: #ea580c;
    --gs-success: #10b981;
    --gs-bg-gradient: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    --gs-glass: rgba(255, 255, 255, 0.8);
    --gs-glass-border: rgba(255, 255, 255, 0.3);
    --gs-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
}

/* Global Focus Resets for Frontend */
*:focus {
    outline: none !important;
}

.gs-btn-main:focus,
.gs-btn-main:active,
.gs-action-row:focus,
.gs-prize-card:focus,
.gs-btn:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Standardized Button Component */
.gs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #475569;
    text-decoration: none !important;
    line-height: 1.5;
    gap: 8px;
    white-space: nowrap;
    outline: none !important;
}

.gs-btn:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
    color: #1e293b;
    transform: translateY(-1px);
}

.gs-btn-primary {
    background: #5D2F23 !important;
    border-color: #5D2F23 !important;
    color: #ffffff !important;
}

.gs-btn-primary:hover {
    background: #4a251c !important;
    border-color: #4a251c !important;
    color: #ffffff !important;
    box-shadow: 0 10px 20px -5px rgba(93, 47, 35, 0.3);
}

.gs-btn-small {
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 8px;
}

.gs-giveaway-single {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #1e293b;
    background: var(--gs-bg-gradient);
    padding: 50px 2rem; 
    margin-top: -45px;
    margin-bottom: -50px;
    padding-bottom: 50px;
	min-height: 100vh;
    width: 100vw;
    position: relative;
    inset-inline-start: 50%;
    margin-inline-start: -50vw;
    box-sizing: border-box;
}

.gs-giveaway-blocks-container {
    max-width: 800px; /* Wider for 2-column grid */
    margin: 0 auto;
    background: var(--gs-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 32px;
    border: 1px solid var(--gs-glass-border);
    box-shadow: var(--gs-shadow);
    overflow: hidden;
    padding-bottom: 2rem;
}

.gs-block-title {
    text-align: center;
    padding: 3rem 2rem 1rem;
    font-size: 2.75rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    background: linear-gradient(to bottom right, #1e293b, #475569);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Prizes Grid Section */
.gs-prizes-section {
    padding: 2rem;
    background: rgba(255,255,255,0.4);
    margin-bottom: 2rem;
}

.gs-section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-top: 0;
}

.gs-prizes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Column Grid */
    gap: 20px;
    margin-top: 20px;
}

.gs-prizes-grid-integrated {
    padding: 0 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 600px) {
    .gs-prizes-grid { grid-template-columns: 1fr; }
}

.gs-prize-card {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.gs-prize-card:hover {
    transform: translateY(-8px);
    border-color: var(--gs-primary);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.gs-prize-card.is-selected {
    border-color: var(--gs-primary);
    background: #fff7ed;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

.gs-prize-image {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
}

.gs-prize-info {
    padding-top: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.gs-prize-name {
    font-weight: 800;
    margin-bottom: 8px;
    color: #1e293b;
}

.gs-prize-desc {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
}

.gs-prize-select-btn {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: none;
    background: #f1f5f9;
    color: #475569;
    font-weight: 700;
    transition: all 0.2s;
    cursor: pointer;
}

.gs-prize-card:hover .gs-prize-select-btn {
    background: #e2e8f0;
}

.gs-prize-card.is-selected .gs-prize-select-btn {
    background: var(--gs-primary);
    color: #fff;
}

/* Actions List */
.gs-actions-block h3 {
    margin-inline-start: 2rem;
    margin-inline-end: 2rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 800;
}

.gs-action-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    margin-bottom: 10px;
    transition: all 0.2s;
    margin-inline-start: 2rem;
    margin-inline-end: 2rem;
}

.gs-action-row:hover {
    border-color: var(--gs-primary);
    transform: translateX(5px);
}

body.rtl .gs-action-row:hover {
    transform: translateX(-5px);
}

/* Join Button */
.gs-btn-main {
    background: var(--gs-primary);
    color: #fff;
    border: none;
    padding: 1.25rem 3rem;
    border-radius: 99px;
    font-size: 1.25rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 25px -5px rgba(249, 115, 22, 0.4);
    transition: all 0.3s;
}

.gs-btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px -5px rgba(249, 115, 22, 0.6);
    color: #fff !important; /* White text on hover */
}

.gs-btn-main:disabled {
    background: #cbd5e1;
    color: #64748b;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Rules */
.gs-block-rules {
    margin: 3rem 2rem 2rem;
    background: #f8fafc;
    border-radius: 16px;
    padding: 1.5rem;
}

.gs-stat-divider {
    border-inline-start: 1px solid #e2e8f0;
}

/* Premium Timer Container - Glassmorphism */
.gs-timer-block {
    text-align: center;
    padding: 2.5rem 3rem; /* Added horizontal padding */
    margin: 0 2rem 2rem;
    background: rgba(255, 255, 255, 0.7); /* Glassmorphism white */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.gs-timer-label {
    font-size: 13px;
    text-transform: uppercase;
    color: #64748b; /* Darker for glassmorphism bg */
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 0.15em;
}

.gs-flip-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.gs-timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* New Premium LCD-Style Timer Card */
.gs-flip-card {
    position: relative;
    width: 75px;
    height: 95px;
    background: linear-gradient(180deg, #2d3748 0%, #1a202c 100%);
    border-radius: 14px;
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.4),
        inset 0 -2px 4px rgba(255, 255, 255, 0.05),
        0 10px 25px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Single number display */
.gs-flip-number {
    font-size: 52px;
    font-weight: 900;
    color: var(--gs-primary);
    font-family: 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
    text-shadow: 
        0 0 20px rgba(var(--gs-primary-rgb), 0.4),
        0 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: -2px;
    user-select: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animated transition effect */
.gs-flip-card.flipping .gs-flip-number {
    animation: numberChange 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes numberChange {
    0% { 
        transform: scale(1);
        opacity: 1;
    }
    40% { 
        transform: scale(0.92);
        opacity: 0.6;
    }
    60% { 
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% { 
        transform: scale(1);
        opacity: 1;
    }
}

/* Decorative LED segments effect */
.gs-flip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(249, 115, 22, 0.03) 50%, transparent 100%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.15) 2px, rgba(0, 0, 0, 0.15) 4px);
    pointer-events: none;
    border-radius: 14px;
}

/* Subtle shine effect */
.gs-flip-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
    border-radius: 14px 14px 0 0;
    pointer-events: none;
}

/* ===== COMPREHENSIVE RESPONSIVE DESIGN ===== */

/* Desktop - Larger screens */
@media (min-width: 1200px) {
    .gs-flip-card {
        width: 80px;
        height: 100px;
    }
    .gs-flip-number {
        font-size: 56px;
    }
}

/* Tablet Portrait - Keep 3 columns */
@media (min-width: 601px) and (max-width: 900px) {
    .gs-stats-bar {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px !important;
        padding: 1.2rem 1.5rem !important;
        margin: 30px 1rem 1.5rem !important;
    }
    
    .gs-stats-bar .gs-stat-item div:first-child {
        font-size: 11px !important;
    }
    
    .gs-stats-bar .gs-stat-item div:last-child {
        font-size: 24px !important;
    }
    
    .gs-flip-card {
        width: 60px;
        height: 80px;
    }
    
    .gs-flip-number {
        font-size: 42px;
    }
    
    .gs-timer-block {
        padding: 2rem 2rem !important;
        margin: 0 1rem 1.5rem !important;
    }
    
    .gs-unit-label {
        font-size: 10px;
    }
}

/* Mobile - Compact 3 columns in ONE ROW */
@media (max-width: 600px) {
    /* Override previous mobile styles */
    .gs-giveaway-single {
        padding: 1rem 0.5rem 1rem !important; /* Minimal padding */
    }
    
    /* Keep 3 columns on mobile - ONE HORIZONTAL ROW */
    .gs-stats-bar {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        grid-template-rows: 1fr !important;
        gap: 0 !important;
        padding: 1rem 0.5rem !important;
        margin: 20px 0.5rem 1rem !important;
        border-left: none !important;
    }
    
    .gs-stats-bar .gs-stat-item {
        border-inline-start: none !important;
        border-inline-end: 1px solid #e2e8f0 !important;
        border-bottom: none !important;
        padding: 0.75rem 0.5rem !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .gs-stats-bar .gs-stat-item:last-child {
        border-inline-end: none !important;
    }
    
    .gs-stats-bar .gs-stat-item div:first-child {
        font-size: 9px !important;
        letter-spacing: 0.03em !important;
        white-space: nowrap !important;
    }
    
    .gs-stats-bar .gs-stat-item div:last-child {
        font-size: 20px !important;
        margin-top: 4px !important;
    }
    
    /* Responsive Timer - Prevent cutting */
    .gs-timer-block {
        margin: 0 0.5rem 1rem !important;
        padding: 1.5rem 0.5rem !important;
    }
    
    .gs-flip-timer {
        gap: 6px !important;
    }
    
    .gs-flip-card {
        width: 54px !important;
        height: 72px !important;
    }
    
    .gs-flip-number {
        font-size: 36px !important;
    }
    
    .gs-timer-label {
        font-size: 11px !important;
        margin-bottom: 20px !important;
    }
    
    .gs-unit-label {
        font-size: 8px !important;
        color: #000 !important; /* Black */
    }
    
    /* Other mobile adjustments */
    .gs-action-row {
        margin-inline-start: 0.5rem !important;
        margin-inline-end: 0.5rem !important;
        padding: 1rem !important;
    }
    
    .gs-actions-block h3 {
        margin-inline-start: 0.5rem !important;
        margin-inline-end: 0.5rem !important;
        font-size: 1.25rem !important;
    }
    
    .gs-block-title {
        font-size: 2rem !important;
        padding: 2rem 1rem 1rem !important;
    }
}

/* Extra small phones */
@media (max-width: 375px) {
    .gs-flip-card {
        width: 48px !important;
        height: 64px !important;
    }
    
    .gs-flip-number {
        font-size: 32px !important;
    }
    
    .gs-stats-bar .gs-stat-item div:last-child {
        font-size: 18px !important;
    }
}
/* Unit labels */
.gs-unit-label {
    font-size: 11px;
    text-transform: uppercase;
    color: #000; /* Black */
    font-weight: 700;
    letter-spacing: 0.1em;
}

/* Responsive Timer */
@media (max-width: 600px) {
    .gs-flip-card {
        width: 50px;
        height: 70px;
        font-size: 32px;
        line-height: 70px;
    }
    .gs-flip-top { line-height: 70px; }
    .gs-flip-front { line-height: 70px; }
    .gs-flip-bottom { line-height: 0px; }
    .gs-flip-back { line-height: 0px; }
    
    .gs-timer-block {
        margin: 1.5rem !important;
        padding: 1.5rem 1rem;
    }
    .gs-flip-timer { gap: 8px; }
    
    .gs-view-toggles {
        display: none !important;
    }
}

/* Template Adjustments */
.gs-template-email_list .gs-block-join_form {
    background: #fff;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.gs-template-social .gs-action-row {
    border-left: 4px solid var(--gs-primary);
}

.gs-template-viral .gs-timer-block {
    background: #fff1f2;
    border-color: #fecdd3;
}

.gs-template-product .gs-prizes-grid {
    grid-template-columns: repeat(2, 1fr);
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 20px;
}

/* Giveaway Archive Styles */
.gs-archive-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.gs-archive-filters a, .gs-view-toggles a {
    padding: 8px 16px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #475569;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gs-archive-filters a.active, .gs-view-toggles a.active {
    background: var(--gs-primary);
    color: #fff;
    border-color: var(--gs-primary);
}

.gs-giveaways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.gs-giveaways-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gs-giveaway-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.gs-giveaways-list .gs-giveaway-card {
    flex-direction: row;
    height: 200px;
}

.gs-giveaway-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--gs-primary);
}

.gs-card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: #f1f5f9;
    /* Soft pattern for fallback */
    background-image: linear-gradient(45deg, rgba(249, 115, 22, 0.05) 25%, transparent 25%, transparent 50%, rgba(249, 115, 22, 0.05) 50%, rgba(249, 115, 22, 0.05) 75%, transparent 75%, transparent);
    background-size: 40px 40px;
}

.gs-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    z-index: 1;
    pointer-events: none;
}

.gs-card-image span.gs-badge {
    z-index: 2;
}

.gs-giveaways-list .gs-card-image {
    width: 300px;
    height: 100%;
    flex-shrink: 0;
}

.gs-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.gs-badge.active { background: #dcfce7; color: #166534; }
.gs-badge.ended { background: #fee2e2; color: #991b1b; }

.gs-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.gs-card-content h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
    font-weight: 800;
}

.gs-card-excerpt {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.gs-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: var(--gs-primary);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    text-align: center;
    transition: all 0.2s;
    width: 100%;
}

.gs-card-btn:hover {
    opacity: 0.9;
    color: #fff !important; /* White text on hover */
}

.gs-prize-select-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 45px;
}

.gs-no-results {
    text-align: center;
    padding: 5rem 2rem;
    background: #fff;
    border: 2px dashed #e2e8f0;
    border-radius: 32px;
    grid-column: 1 / -1;
    width: 100%;
}

.gs-no-results-icon {
    font-size: 64px;
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    color: #cbd5e1;
}

.gs-no-results h3 {
    margin: 0 0 10px;
    color: #1e293b;
    font-size: 1.5rem;
}

.gs-no-results p {
    color: #64748b;
    max-width: 400px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .gs-giveaways-list .gs-giveaway-card {
        flex-direction: column;
        height: auto;
    }
    .gs-giveaways-list .gs-card-image {
        width: 100%;
        height: 200px;
    }
}

/* Premium Success Message */
.gs-joined-notice {
    text-align: center;
    padding: 3rem 2rem !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(249, 115, 22, 0.2) !important;
    border-radius: 32px !important;
    margin: 0 2rem 2rem !important;
    box-shadow: 
        0 20px 40px -10px rgba(249, 115, 22, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset !important;
    backdrop-filter: blur(10px);
}

.gs-success-icon {
    display: block;
    margin: 0 auto 1.5rem;
    width: 80px;
    height: 80px;
    color: var(--gs-primary);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

@keyframes gs-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.gs-success-title {
    margin: 0 0 0.5rem !important;
    font-size: 2rem !important;
    font-weight: 900 !important;
    background: linear-gradient(135deg, var(--gs-primary) 0%, #ea580c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
}

.gs-success-text {
    margin: 0 !important;
    color: #475569 !important;
    font-size: 1.1rem !important;
    font-weight: 500;
}

@media (max-width: 768px) {
    .gs-success-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .gs-success-title {
        font-size: 1.5rem !important;
    }
    
    .gs-success-text {
        font-size: 1rem !important;
    }
}

/* Social Redirect Transition Overlay */
.gs-redirect-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gs-redirect-overlay.active {
    opacity: 1;
    visibility: visible;
}

.gs-redirect-card {
    background: #fff;
    padding: 3rem;
    border-radius: 32px;
    width: 90%;
    max-width: 480px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.9) translateY(20px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.gs-redirect-overlay.active .gs-redirect-card {
    transform: scale(1) translateY(0);
}

.gs-redirect-icon {
    width: 72px;
    height: 72px;
    background: var(--gs-primary);
    color: #fff !important;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 32px !important;
    box-shadow: 0 10px 20px -5px rgba(249, 115, 22, 0.4);
}

.gs-redirect-icon i { font-family: "dashicons"; }
.gs-redirect-icon.discord { background: #5865F2; box-shadow: 0 10px 20px -5px rgba(88, 101, 242, 0.4); }
.gs-redirect-icon.telegram { background: #24A1DE; box-shadow: 0 10px 20px -5px rgba(36, 161, 222, 0.4); }

.gs-redirect-message {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.gs-redirect-count {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1e293b;
    margin: 1.5rem 0;
}

.gs-redirect-sub {
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
}

.gs-redirect-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 6px;
    background: var(--gs-primary);
    width: 0%;
    transition: width 1s linear;
}
.gs-redirect-overlay.discord .gs-redirect-progress { background: #5865F2; }
.gs-redirect-overlay.telegram .gs-redirect-progress { background: #24A1DE; }
