/* Greek Sneaks Giveaway Frontend Styles - Version 3.0 */

.gs-giveaway-form .gs-message.error {
    max-width: 100%;
    margin-bottom: 20px;
}
/* Prize Display Wrapper */
.gs-giveaway-prize-wrapper {
    max-width: 100%;
    margin: 30px auto;
    padding: 30px;
    background: #ffffff;
    border: 2px solid #004d7a;
    border-radius: 12px;
    text-align: center;
    font-family: inherit;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.gs-giveaway-title {
    color: #004d7a;
    margin: 0 0 25px;
    font-size: 28px;
    font-weight: 700;
}
.gs-giveaway-form button[type="submit"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
/* Winners Announcement Section */
.gs-winners-announcement {
    background: linear-gradient(135deg, #fff9e6 0%, #fffef5 100%);
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
}

.gs-winners-announcement h3 {
    margin: 0 0 20px;
    color: #856404;
    font-size: 22px;
}

.gs-winners-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gs-winner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    flex-wrap: wrap;
}

.gs-winner-item.gs-winner-1 {
    border-left: 4px solid #ffd700;
}

.gs-winner-item.gs-winner-2 {
    border-left: 4px solid #c0c0c0;
}

.gs-winner-item.gs-winner-3 {
    border-left: 4px solid #cd7f32;
}

.gs-winner-icon {
    font-size: 28px;
}

.gs-winner-position {
    font-weight: 700;
    color: #333;
    min-width: 80px;
}

.gs-winner-name {
    font-weight: 600;
    color: #004d7a;
    font-size: 16px;
}

.gs-winner-prize {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

/* Prize Cards Grid */
.gs-prizes-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 25px;
}

.gs-prizes-grid.gs-single-prize {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.gs-prizes-grid.gs-multi-prize {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gs-prize-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gs-prize-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.gs-prize-card.gs-prize-1 {
    border-top: 4px solid #ffd700;
    background: linear-gradient(135deg, #fffef0 0%, #f8f9fa 100%);
}

.gs-prize-card.gs-prize-2 {
    border-top: 4px solid #c0c0c0;
    background: linear-gradient(135deg, #fafafa 0%, #f8f9fa 100%);
}

.gs-prize-card.gs-prize-3 {
    border-top: 4px solid #cd7f32;
    background: linear-gradient(135deg, #fdf5ef 0%, #f8f9fa 100%);
}

.gs-prize-position {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #ddd;
}

.gs-prize-image {
    margin-bottom: 15px;
}

.gs-prize-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    max-height: 200px;
    object-fit: cover;
}

.gs-prize-name {
    color: #004d7a;
    margin: 0 0 10px;
    font-size: 18px;
}

.gs-prize-value {
    font-weight: bold;
    color: #ff5722;
    margin: 10px 0;
    font-size: 16px;
}

.gs-prize-description {
    color: #555;
    line-height: 1.6;
    margin: 10px 0;
    font-size: 14px;
}

/* Legacy single prize display */
.gs-prize-title {
    color: #004d7a;
    margin: 0 0 10px;
    font-size: 24px;
}

/* Entry Status */
.gs-entries-status {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.gs-entries-count {
    font-size: 14px;
    margin-bottom: 10px;
}

.gs-progress-bar {
    background: #e0e0e0;
    border-radius: 10px;
    height: 12px;
    width: 100%;
    max-width: 400px;
    margin: 10px auto;
    overflow: hidden;
}

.gs-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #004d7a, #0077b6);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.gs-entries-remaining {
    font-size: 13px;
    color: #666;
    margin: 5px 0 0;
}

/* Buttons */
.gs-enter-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 40px;
    background: linear-gradient(135deg, #004d7a 0%, #0066a2 100%);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 77, 122, 0.3);
}

.gs-enter-btn:hover {
    background: linear-gradient(135deg, #003d5c 0%, #004d7a 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 77, 122, 0.4);
}

.gs-closed-message {
    color: #dc3545;
    font-weight: bold;
    margin-top: 20px;
    padding: 15px 20px;
    background: #ffeaea;
    border-radius: 6px;
    border: 1px solid #f5c6cb;
    display: inline-block;
}

/* Form Styles */
.gs-giveaway-form {
    max-width: 520px;
    margin: 70px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    font-family: inherit;
}

.gs-giveaway-form h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
}

.gs-giveaway-form p {
    margin-bottom: 15px;
}

/* Message Box */
.gs-message {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.gs-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.gs-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: flex;
    max-width: 70%;
    margin: auto;
    justify-content: center;
    flex-wrap: wrap;
}
.gs-message.error a {
    margin-left: 10px;
}
/* Form Inputs */
.gs-giveaway-form input[type="text"],
.gs-giveaway-form input[type="email"] {
    width: 100%;
    padding: 14px 16px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.gs-giveaway-form input[type="text"]:focus,
.gs-giveaway-form input[type="email"]:focus {
    outline: none;
    border-color: #004d7a;
    box-shadow: 0 0 0 3px rgba(0, 77, 122, 0.1);
}

.gs-giveaway-form input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
}
.winner-obligations-section {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.obligations-container {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 35px;
    color: #2d3748;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.obligations-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 10px;
}

.obligations-intro {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    border-left: 4px solid #e53e3e;
    line-height: 1.7;
    font-size: 15px;
    color: #4a5568;
}

.obligations-intro p {
    margin: 0;
}

.obligations-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2d3748;
}

.obligation-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.obligation-item:hover {
    border-color: #cbd5e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.obligation-icon {
    font-size: 24px;
    flex-shrink: 0;
    line-height: 1;
}

.obligation-text {
    flex: 1;
    line-height: 1.7;
    font-size: 15px;
    color: #4a5568;
}

.obligation-text strong {
    color: #2d3748;
    font-weight: 700;
    display: inline;
    margin-right: 5px;
}

.obligation-text a {
    color: #3182ce;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.obligation-text a:hover {
    color: #2c5282;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .obligations-container {
        padding: 25px 20px;
    }
    
    .obligations-title {
        font-size: 20px;
    }
    
    .obligation-item {
        padding: 15px;
    }
    
    .obligation-icon {
        font-size: 20px;
    }
    
    .obligation-text {
        font-size: 14px;
    }
}
.gs-giveaway-form input::placeholder {
    color: #999;
}

/* Checkbox Label */
.gs-giveaway-form label {
    font-size: 14px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.gs-giveaway-form input[type="checkbox"] {
    margin-top: 4px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Submit Button */
.gs-giveaway-form button,
.gs-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #004d7a 0%, #0066a2 100%);
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gs-giveaway-form button:hover,
.gs-submit-btn:hover {
    background: linear-gradient(135deg, #003d5c 0%, #004d7a 100%);
    transform: translateY(-2px);
}

.gs-giveaway-form button:disabled {
    background: #999;
    cursor: not-allowed;
    transform: none;
}

/* Loading State */
.gs-giveaway-form.loading button {
    opacity: 0.7;
    pointer-events: none;
}

.gs-giveaway-form.loading button::after {
    content: " ...";
}

/* Responsive */
@media (max-width: 768px) {
    .gs-giveaway-prize-wrapper {
        margin: 20px 15px;
        padding: 20px;
    }

    .gs-giveaway-title {
        font-size: 22px;
    }

    .gs-prizes-grid.gs-multi-prize {
        grid-template-columns: 1fr;
    }

    .gs-winner-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .gs-winner-position {
        min-width: auto;
    }
}

@media (max-width: 600px) {
    .gs-giveaway-form {
        margin: 20px 15px;
        padding: 20px;
    }

    .gs-prize-name {
        font-size: 16px;
    }

    .gs-giveaway-form input[type="text"],
    .gs-giveaway-form input[type="email"] {
        padding: 12px 14px;
    }
}

/* Animation for prize cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gs-prize-card {
    animation: fadeInUp 0.5s ease forwards;
}

.gs-prize-card:nth-child(2) {
    animation-delay: 0.1s;
}

.gs-prize-card:nth-child(3) {
    animation-delay: 0.2s;
}

/* ============================================
   WINNERS SHOWCASE STYLES
   ============================================ */

/* Pending Winners State */
.gs-winners-pending {
    text-align: center;
    padding: 60px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    max-width: 500px;
    margin: 30px auto;
}

.gs-pending-icon {
    font-size: 64px;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

.gs-winners-pending h3 {
    color: #333;
    font-size: 24px;
    margin: 0 0 10px;
}

.gs-winners-pending p {
    color: #666;
    font-size: 16px;
    margin: 0;
}

/* Winners Showcase Container */
.gs-winners-showcase {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: inherit;
}

/* Header Section */
.gs-winners-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding: 40px 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 20px;
    overflow: hidden;
}

.gs-winners-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.gs-confetti-left,
.gs-confetti-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 48px;
    animation: bounce 1s ease-in-out infinite;
}

.gs-confetti-left {
    left: 30px;
}

.gs-confetti-right {
    right: 30px;
    animation-delay: 0.5s;
}

.gs-header-content {
    position: relative;
    z-index: 1;
}

.gs-winners-title {
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}

.gs-giveaway-name {
    color: #ffd700;
    font-size: 18px;
    margin: 0;
    font-weight: 600;
}

/* Winners Container */
.obligation-text a:hover {
    color: #2c5282;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .obligations-container {
        padding: 25px 20px;
    }
    
    .obligations-title {
        font-size: 20px;
    }
    
    .obligation-item {
        padding: 15px;
    }
    
    .obligation-icon {
        font-size: 20px;
    }
    
    .obligation-text {
        font-size: 14px;
    }
}
.gs-giveaway-form input::placeholder {
    color: #999;
}

/* Checkbox Label */
.gs-giveaway-form label {
    font-size: 14px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.gs-giveaway-form input[type="checkbox"] {
    margin-top: 4px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Submit Button */
.gs-giveaway-form button,
.gs-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #004d7a 0%, #0066a2 100%);
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gs-giveaway-form button:hover,
.gs-submit-btn:hover {
    background: linear-gradient(135deg, #003d5c 0%, #004d7a 100%);
    transform: translateY(-2px);
}

.gs-giveaway-form button:disabled {
    background: #999;
    cursor: not-allowed;
    transform: none;
}

/* Loading State */
.gs-giveaway-form.loading button {
    opacity: 0.7;
    pointer-events: none;
}

.gs-giveaway-form.loading button::after {
    content: " ...";
}

/* Responsive */
@media (max-width: 768px) {
    .gs-giveaway-prize-wrapper {
        margin: 20px 15px;
        padding: 20px;
    }

    .gs-giveaway-title {
        font-size: 22px;
    }

    .gs-prizes-grid.gs-multi-prize {
        grid-template-columns: 1fr;
    }

    .gs-winner-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .gs-winner-position {
        min-width: auto;
    }
}

@media (max-width: 600px) {
    .gs-giveaway-form {
        margin: 20px 15px;
        padding: 20px;
    }

    .gs-prize-name {
        font-size: 16px;
    }

    .gs-giveaway-form input[type="text"],
    .gs-giveaway-form input[type="email"] {
        padding: 12px 14px;
    }
}

/* Animation for prize cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gs-prize-card {
    animation: fadeInUp 0.5s ease forwards;
}

.gs-prize-card:nth-child(2) {
    animation-delay: 0.1s;
}

.gs-prize-card:nth-child(3) {
    animation-delay: 0.2s;
}

/* ============================================
   WINNERS SHOWCASE STYLES
   ============================================ */

/* Pending Winners State */
.gs-winners-pending {
    text-align: center;
    padding: 60px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    max-width: 500px;
    margin: 30px auto;
}

.gs-pending-icon {
    font-size: 64px;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

.gs-winners-pending h3 {
    color: #333;
    font-size: 24px;
    margin: 0 0 10px;
}

.gs-winners-pending p {
    color: #666;
    font-size: 16px;
    margin: 0;
}

/* Winners Showcase Container */
.gs-winners-showcase {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: inherit;
}

/* Header Section */
.gs-winners-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding: 40px 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 20px;
    overflow: hidden;
}

.gs-winners-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.gs-confetti-left,
.gs-confetti-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 48px;
    animation: bounce 1s ease-in-out infinite;
}

.gs-confetti-left {
    left: 30px;
}

.gs-confetti-right {
    right: 30px;
    animation-delay: 0.5s;
}

.gs-header-content {
    position: relative;
    z-index: 1;
}

.gs-winners-title {
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}

.gs-giveaway-name {
    color: #ffd700;
    font-size: 18px;
    margin: 0;
    font-weight: 600;
}

/* Winners Container */
.gs-winners-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.gs-winners-container.gs-single-winner {
    justify-content: center;
}

.gs-winners-container.gs-single-winner .gs-winner-showcase-card {
    max-width: 380px;
}

/* Winner Card */
.gs-winner-showcase-card {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 30px 25px;
    width: 100%;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    animation: cardSlideUp 0.6s ease-out forwards;
    opacity: 0;
}

.gs-winner-showcase-card[data-position="1"] {
    animation-delay: 0s;
}

.gs-winner-showcase-card[data-position="2"] {
    animation-delay: 0.15s;
}

.gs-winner-showcase-card[data-position="3"] {
    animation-delay: 0.3s;
}

.gs-winner-showcase-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

/* Gold Card - 1st Place */
.gs-winner-showcase-card.gs-winner-gold {
    background: linear-gradient(180deg, #fffef5 0%, #fff9e6 100%);
    border: 3px solid #ffd700;
}

.gs-winner-showcase-card.gs-winner-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #ffd700, #ffec8b, #ffd700);
}

.gs-winner-showcase-card.gs-winner-gold .gs-winner-position-badge {
    background: linear-gradient(135deg, #ffd700 0%, #f0c000 100%);
    color: #5a4a00;
}

.gs-winner-showcase-card.gs-winner-gold .gs-trophy-glow {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, transparent 70%);
}

/* Silver Card - 2nd Place */
.gs-winner-showcase-card.gs-winner-silver {
    background: linear-gradient(180deg, #fafafa 0%, #f0f0f0 100%);
    border: 3px solid #c0c0c0;
}

.gs-winner-showcase-card.gs-winner-silver::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #c0c0c0, #e8e8e8, #c0c0c0);
}

.gs-winner-showcase-card.gs-winner-silver .gs-winner-position-badge {
    background: linear-gradient(135deg, #c0c0c0 0%, #a8a8a8 100%);
    color: #3a3a3a;
}

.gs-winner-showcase-card.gs-winner-silver .gs-trophy-glow {
    background: radial-gradient(circle, rgba(192, 192, 192, 0.4) 0%, transparent 70%);
}

/* Bronze Card - 3rd Place */
.gs-winner-showcase-card.gs-winner-bronze {
    background: linear-gradient(180deg, #fdf8f3 0%, #f5ebe0 100%);
    border: 3px solid #cd7f32;
}

.gs-winner-showcase-card.gs-winner-bronze::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #cd7f32, #daa06d, #cd7f32);
}

.gs-winner-showcase-card.gs-winner-bronze .gs-winner-position-badge {
    background: linear-gradient(135deg, #cd7f32 0%, #b87333 100%);
    color: #fff;
}

.gs-winner-showcase-card.gs-winner-bronze .gs-trophy-glow {
    background: radial-gradient(circle, rgba(205, 127, 50, 0.4) 0%, transparent 70%);
}

/* Trophy Section */
.gs-winner-trophy {
    position: relative;
    margin-bottom: 15px;
}

.gs-trophy-icon {
    font-size: 72px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
    animation: trophyFloat 3s ease-in-out infinite;
}

.gs-trophy-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    z-index: -1;
    animation: glowPulse 2s ease-in-out infinite;
}

/* Position Badge */
.gs-winner-position-badge {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* Winner Info */
.gs-winner-info {
    margin-bottom: 20px;
}

.gs-winner-fullname {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.3;
}

/* Prize Section */
.gs-winner-prize-section {
    background: rgba(0, 0, 0, 0.03);
    border-radius: 16px;
    padding: 20px;
    margin-top: 15px;
}

.gs-winner-prize-image {
    margin-bottom: 15px;
}

.gs-winner-prize-image img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
    border-radius: 10px;
}

.gs-winner-prize-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.gs-prize-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888;
    font-weight: 600;
}

.gs-winner-prize-section .gs-prize-name {
    font-size: 16px;
    font-weight: 700;
    color: #004d7a;
    margin: 0;
}

.gs-winner-prize-section .gs-prize-value {
    font-size: 18px;
    font-weight: 800;
    color: #ff5722;
}

/* Sparkle Effects */
.gs-card-sparkle {
    position: absolute;
    font-size: 16px;
    opacity: 0;
    animation: sparkle 2s ease-in-out infinite;
}

.gs-sparkle-1 {
    top: 15px;
    right: 20px;
    animation-delay: 0s;
}

.gs-sparkle-2 {
    top: 40%;
    left: 10px;
    animation-delay: 0.7s;
}

.gs-sparkle-3 {
    bottom: 20px;
    right: 15px;
    animation-delay: 1.4s;
}

/* Footer */
.gs-winners-footer {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
}

.gs-winners-footer p {
    margin: 0;
    font-size: 18px;
    color: #555;
    font-weight: 500;
}

/* Animations */
@keyframes cardSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes trophyFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(-50%) scale(1);
    }
    50% {
        transform: translateY(-50%) scale(1.2);
    }
}

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

/* Responsive Styles for Winners Showcase */
@media (max-width: 900px) {
    .gs-winners-container {
        gap: 20px;
    }
    
    .gs-winner-showcase-card {
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .gs-winners-header {
        padding: 30px 15px;
    }
    
    .gs-winners-title {
        font-size: 24px;
    }
    
    .gs-confetti-left,
    .gs-confetti-right {
        font-size: 32px;
    }
    
    .gs-confetti-left {
        left: 15px;
    }
    
    .gs-confetti-right {
        right: 15px;
    }
    
    .gs-winners-container {
        flex-direction: column;
        align-items: center;
    }
    
    .gs-winner-showcase-card {
        max-width: 340px;
    }
    
    .gs-trophy-icon {
        font-size: 60px;
    }
}

@media (max-width: 480px) {
    .gs-winners-showcase {
        padding: 0 15px;
        margin: 20px auto;
    }
    
    .gs-winners-header {
        padding: 25px 10px;
        border-radius: 15px;
    }
    
    .gs-winners-title {
        font-size: 20px;
    }
    
    .gs-giveaway-name {
        font-size: 14px;
    }
    
    .gs-confetti-left,
    .gs-confetti-right {
        display: none;
    }
    
    .gs-winner-showcase-card {
        padding: 25px 20px;
        max-width: 100%;
    }
    
    .gs-trophy-icon {
        font-size: 52px;
    }
    
    .gs-winner-fullname {
        font-size: 20px;
    }
    
    .gs-winners-footer {
        padding: 20px;
    }
    
    .gs-winners-footer p {
        font-size: 16px;
    }
}

/* ============================================
   COUNTDOWN TIMER STYLES
   ============================================ */

.gs-countdown-wrapper {
    max-width: 600px;
    margin: 40px auto;
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

/* Header Section */
.gs-countdown-header {
    text-align: center;
    margin-bottom: 35px;
}

.gs-countdown-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.gs-countdown-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.3;
}

/* Countdown Display */
.gs-countdown-display {
    background: #f9fafb;
    border-radius: 12px;
    padding: 30px 20px;
    margin-bottom: 25px;
    border: 1px solid #e5e7eb;
}

.gs-countdown-label {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gs-countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.gs-countdown-value {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    line-height: 1;
    margin-bottom: 6px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.gs-countdown-unit-label {
    font-size: 11px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.gs-countdown-separator {
    font-size: 32px;
    font-weight: 600;
    color: #9ca3af;
    padding: 0 4px;
}

/* Date Info Section */
.gs-countdown-date-info {
    background: #f3f4f6;
    border-radius: 10px;
    padding: 18px 20px;
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid #e5e7eb;
}

.gs-date-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6b7280;
    font-weight: 600;
    margin-bottom: 6px;
}

.gs-date-value {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}

/* Call to Action */
.gs-countdown-cta {
    text-align: center;
}

.gs-cta-text {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    font-weight: 500;
}
/* ============================================
   MINIMAL "COMING SOON" COUNTDOWN DESIGN
   Color Theme: #242424
   ============================================ */

.gs-countdown-wrapper {
    max-width: 580px;
    margin: 80px auto;
    margin-top: 10px;
    padding: 30px 20px;
    background: #f6f1ea;
    box-shadow: none;
    border: none;
    text-align: center;
}

/* Header */
.gs-countdown-header {
    margin-bottom: 20px;
}

.gs-countdown-icon {
    display: none;
}

.gs-countdown-title {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #242424;
    margin-bottom: 10px;
}

/* Countdown Container */
.gs-countdown-display {
    background: transparent;
    border: none;
    padding: 0;
    margin-bottom: 40px;
}

.gs-countdown-label {
    display: none;
}

/* Timer */
.gs-countdown-timer {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.gs-countdown-unit {
    background: transparent;
    min-width: 90px;
    padding: 0px;
}

.gs-countdown-value {
    font-size: 34px;
    font-weight: 700;
    color: #242424;
    font-family: "Georgia", serif;
}

.gs-countdown-unit-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #242424;
    margin-top: 6px;
}

.gs-countdown-separator {
    display: none;
}

/* Date Info */
.gs-countdown-date-info {
    background: transparent;
    border: none;
    padding: 0;
    margin-bottom: 30px;
}

.gs-date-label {
    font-size: 11px;
    letter-spacing: 2px;
    color: #242424;
}

.gs-date-value {
    font-size: 15px;
    font-weight: 600;
    color: #242424;
}

/* CTA */
.gs-countdown-cta p {
    font-size: 14px;
    letter-spacing: 1px;
    color: #242424;
}

/* Live State */
.gs-countdown-expired {
    background: #f6f1ea;
    border: none;
    box-shadow: none;
}

.gs-countdown-expired h3,
.gs-countdown-expired p {
    color: #242424;
}

/* Mobile */
@media (max-width: 600px) {
    .gs-countdown-wrapper {
        padding: 20px 20px;
        margin: 40px 15px;
    }
    .gs-countdown-title {
        font-size: 30px;
    }

    .gs-countdown-unit {
        min-width: 65px;
        padding: 14px 6px;
    }

    .gs-countdown-value {
        font-size: 24px;
    }
}

/* Expired/Started State */
.gs-countdown-expired {
    max-width: 600px;
    margin: 40px auto;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-radius: 16px;
    padding: 50px 30px;
    text-align: center;
    border: 2px solid #28a745;
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.15);
}

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

.gs-countdown-expired h3 {
    font-size: 28px;
    font-weight: 700;
    color: #155724;
    margin: 0 0 12px;
}

.gs-countdown-expired p {
    font-size: 16px;
    color: #1e7e34;
    margin: 0;
    font-weight: 500;
}

/* Animations */
@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Responsive Countdown Styles */
@media (max-width: 768px) {
    .gs-countdown-wrapper {
        padding: 30px 20px;
        margin: 20px 15px;
    }
    .gs-countdown-header,.gs-countdown-display,.gs-countdown-date-info {
        margin-bottom: 0px;
    }
    .gs-countdown-icon {
        font-size: 40px;
    }
    
    .gs-countdown-title {
        font-size: 20px;
    }
    
    .gs-countdown-display {
        padding: 25px 15px;
    }
    
    .gs-countdown-timer {
        gap: 8px;
    }
    
    .gs-countdown-unit {
        min-width: 65px;
        padding: 12px 10px;
    }
    
    .gs-countdown-value {
        font-size: 30px;
    }
    
    .gs-countdown-unit-label {
        font-size: 10px;
    }
    
    .gs-countdown-separator {
        font-size: 26px;
    }
    
    .gs-date-value {
        font-size: 14px;
    }
    
    .gs-countdown-date-info {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .gs-countdown-wrapper {
        padding: 25px 15px;
        margin: 15px 10px;
    }
    
    .gs-countdown-icon {
        font-size: 36px;
    }
    
    .gs-countdown-title {
        font-size: 18px;
    }
    
    .gs-countdown-display {
        padding: 20px 10px;
    }
    
    .gs-countdown-timer {
        gap: 5px;
    }
    
    .gs-countdown-unit {
        min-width: 55px;
        padding: 10px 8px;
    }
    
    .gs-countdown-value {
        font-size: 24px;
    }
    
    .gs-countdown-unit-label {
        font-size: 9px;
    }
    
    .gs-countdown-separator {
        font-size: 20px;
    }
    
    .gs-date-value {
        font-size: 13px;
    }
    
    .gs-cta-text {
        font-size: 13px;
    }
    
    .gs-countdown-expired {
        padding: 40px 20px;
    }
    
    .gs-expired-icon {
        font-size: 52px;
    }
    
    .gs-countdown-expired h3 {
        font-size: 22px;
    }
    
    .gs-countdown-expired p {
        font-size: 14px;
    }
}