/* HarHafta Lucky Draw Styles */

.har-hafta-draw-entry-form {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    text-align: center;
}

.har-hafta-draw-title {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    border-bottom: 2px solid #ca851c;
    padding-bottom: 15px;
}

.har-hafta-draw-description {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
}

.har-hafta-draw-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.har-hafta-draw-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.har-hafta-draw-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
    font-weight: 500;
}

.har-hafta-draw-value {
    font-size: 18px;
    font-weight: 600;
    color: #007cba;
}

.har-hafta-referral-eligible {
    background: #d4edda !important;
    border-left: 4px solid #28a745 !important;
}

.har-hafta-referral-not-eligible {
    background: #f8d7da !important;
    border-left: 4px solid #dc3545 !important;
}

.har-hafta-eligible {
    color: #28a745 !important;
    font-weight: 700;
}

.har-hafta-not-eligible {
    color: #dc3545 !important;
    font-weight: 700;
}

.har-hafta-draw-actions {
    margin-top: 30px;
}

.har-hafta-btn {
    display: inline-block;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
    min-width: 200px;
}

.har-hafta-btn-primary {
    background: linear-gradient(135deg, #007cba, #005a87);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 124, 186, 0.3);
}

.har-hafta-btn-primary:hover {
    background: linear-gradient(135deg, #005a87, #004066);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 124, 186, 0.4);
    color: #fff;
}

.har-hafta-btn-disabled {
    background: #e1e5e9;
    color: #999;
    cursor: not-allowed;
    box-shadow: none;
}

.har-hafta-btn-disabled:hover {
    transform: none;
    box-shadow: none;
}

.har-hafta-btn-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #fff;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.har-hafta-btn-success:hover {
    background: linear-gradient(135deg, #20c997, #17a2b8);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    color: #fff;
}

/* Countdown Timer Styles */
.har-hafta-countdown-container {
    text-align: center;
    margin: 30px 0;
}

.har-hafta-countdown-title {
    color: #333;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
}

.har-hafta-countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.har-hafta-countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 80px;
}

.har-hafta-countdown-number {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #ca851c 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 5px;
}

.har-hafta-countdown-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Winners List Styles */
.har-hafta-winners-list {
    margin: 30px 0;
}

.har-hafta-winners-title {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 600;
}

.har-hafta-winners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.har-hafta-winner-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.har-hafta-winner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #007cba;
}

.har-hafta-winner-photo {
    margin-bottom: 15px;
}

.har-hafta-winner-photo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #007cba;
}

.har-hafta-winner-name {
    color: #333;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
}

.har-hafta-winner-draw {
    color: #007cba;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.har-hafta-winner-date {
    color: #666;
    margin-bottom: 10px;
    font-size: 14px;
}

.har-hafta-winner-prize {
    color: #28a745;
    font-weight: 600;
    font-size: 16px;
    margin-top: 10px;
    padding: 8px 15px;
    background: #f8f9fa;
    border-radius: 20px;
    display: inline-block;
}

.har-hafta-no-winners {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 20px 0;
}

/* Draw Status Styles */
.har-hafta-draw-status {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.har-hafta-draw-status .har-hafta-draw-title {
    text-align: center;
    margin-bottom: 25px;
    font-size: 24px;
}

.har-hafta-draw-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.har-hafta-draw-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #007cba;
}

.har-hafta-draw-label {
    font-weight: 500;
    color: #333;
}

.har-hafta-draw-value {
    font-weight: 600;
    color: #007cba;
}

.har-hafta-draw-value.open {
    color: #28a745;
}

.har-hafta-draw-value.closed {
    color: #dc3545;
}

/* Error and Message Styles */
.har-hafta-error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #f5c6cb;
    margin: 20px 0;
    text-align: center;
}

.har-hafta-message {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #c3e6cb;
    margin: 20px 0;
    text-align: center;
}

.har-hafta-info {
    background: #d1ecf1;
    color: #0c5460;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #bee5eb;
    margin: 20px 0;
    text-align: center;
}

/* Loading States */
.har-hafta-loading {
    opacity: 0.6;
    pointer-events: none;
}

.har-hafta-loading .har-hafta-btn {
    position: relative;
}

.har-hafta-loading .har-hafta-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: har-hafta-spin 1s linear infinite;
}

@keyframes har-hafta-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .har-hafta-draw-entry-form {
        padding: 20px;
        margin: 10px 0;
    }
    
    .har-hafta-draw-title {
        font-size: 24px;
    }
    
    .har-hafta-draw-details {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }
    
    .har-hafta-countdown-timer {
        gap: 12px;
        flex-wrap: nowrap;
    }
    
    .har-hafta-countdown-item {
        padding: 12px;
        min-width: 65px;
        flex: 1;
    }
    
    .har-hafta-countdown-number {
        font-size: 24px;
        background: linear-gradient(135deg, #ca851c 0%, #f4d03f 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .har-hafta-winners-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .har-hafta-winner-card {
        padding: 20px;
    }
    
    .har-hafta-draw-info {
        grid-template-columns: 1fr;
    }
    
    .har-hafta-draw-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .har-hafta-btn {
        min-width: 150px;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .har-hafta-countdown-timer {
        gap: 8px;
        flex-wrap: nowrap;
    }
    
    .har-hafta-countdown-item {
        padding: 8px;
        min-width: 50px;
        flex: 1;
    }
    
    .har-hafta-countdown-number {
        font-size: 18px;
        background: linear-gradient(135deg, #ca851c 0%, #f4d03f 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .har-hafta-countdown-label {
        font-size: 10px;
    }
    
    .har-hafta-winner-card {
        padding: 15px;
    }
    
    .har-hafta-winner-name {
        font-size: 18px;
    }
}

/* REFERRAL TRACKING STYLES */
.har-hafta-referral-tracking {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.har-hafta-referral-title {
    color: #333;
    margin-bottom: 25px;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
}

.har-hafta-referral-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.har-hafta-referral-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.har-hafta-referral-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.har-hafta-referral-code {
    font-size: 18px;
    font-weight: 700;
    color: #007cba;
    background: #e3f2fd;
    padding: 8px 12px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
}

.har-hafta-referral-value {
    font-size: 24px;
    font-weight: 700;
    color: #28a745;
}

.har-hafta-referral-progress {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.har-hafta-referral-progress h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.har-hafta-progress-bar {
    width: 100%;
    height: 20px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.har-hafta-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #28a745, #20c997);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.har-hafta-progress-text {
    color: #666;
    font-size: 14px;
    text-align: center;
    margin: 0;
}

.har-hafta-referral-link {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.har-hafta-referral-link h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.har-hafta-referral-url-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.har-hafta-referral-url-input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    color: #333;
}

.har-hafta-referral-url-input:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

.har-hafta-btn-copy {
    background: #007cba;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.har-hafta-btn-copy:hover {
    background: #005a87;
    transform: translateY(-1px);
}

.har-hafta-referral-list {
    margin-bottom: 20px;
}

.har-hafta-referral-list h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.har-hafta-referral-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.har-hafta-referral-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #007cba;
}

.har-hafta-referral-user {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.har-hafta-referral-user strong {
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.har-hafta-referral-date {
    color: #666;
    font-size: 12px;
}

.har-hafta-status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.har-hafta-status-pending {
    background: #fff3cd;
    color: #856404;
}

.har-hafta-status-approved {
    background: #d4edda;
    color: #155724;
}

/* Responsive Design for Referral Tracking */
@media (max-width: 768px) {
    .har-hafta-referral-tracking {
        padding: 20px;
        margin: 10px 0;
    }
    
    .har-hafta-referral-title {
        font-size: 24px;
    }
    
    .har-hafta-referral-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }
    
    .har-hafta-referral-stat-item {
        padding: 12px;
    }
    
    .har-hafta-referral-value {
        font-size: 20px;
    }
    
    .har-hafta-referral-url-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .har-hafta-referral-url-input {
        width: 100%;
    }
    
    .har-hafta-btn-copy {
        width: 100%;
    }
    
    .har-hafta-referral-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .har-hafta-referral-tracking {
        padding: 15px;
    }
    
    .har-hafta-referral-title {
        font-size: 22px;
    }
    
    .har-hafta-referral-stats {
        padding: 10px;
    }
    
    .har-hafta-referral-stat-item {
        padding: 10px;
    }
    
    .har-hafta-referral-code {
        font-size: 16px;
    }
    
    .har-hafta-referral-value {
        font-size: 18px;
    }
}

/* New Draw Entry Form Styles - Card Layout */
.har-hafta-draw-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.har-hafta-info-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(51, 51, 51, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.har-hafta-info-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.har-hafta-info-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ca851c, #fbd971);
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
}

.har-hafta-info-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.har-hafta-info-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.har-hafta-info-label {
    color: rgba(51, 51, 51, 0.7);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.har-hafta-info-value {
    color: #333333;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Free Entry Note */
.har-hafta-free-entry-note {
    background: linear-gradient(135deg, rgba(202, 133, 28, 0.1), rgba(251, 217, 113, 0.1));
    border: 1px solid rgba(202, 133, 28, 0.3);
    padding: 12px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: center;
    justify-content: center;
    margin-bottom: 20px;
}

.har-hafta-note-icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ca851c;
}

.har-hafta-note-icon svg {
    width: 16px;
    height: 16px;
}

.har-hafta-note-text {
    color: #333333;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Updated Button Styles with Brand Gradient */
.har-hafta-draw-actions .har-hafta-btn {
    background: linear-gradient(135deg, #ca851c, #fbd971) !important;
    color: #00081d !important;
    border: none !important;
    padding: 12px 30px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.har-hafta-draw-actions .har-hafta-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(202, 133, 28, 0.4) !important;
}

.har-hafta-draw-actions .har-hafta-btn-success {
    background: linear-gradient(135deg, #27ae60, #2ecc71) !important;
    color: white !important;
}

.har-hafta-draw-actions .har-hafta-btn-success:hover {
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4) !important;
}

.har-hafta-draw-actions .har-hafta-btn-disabled {
    background: #95a5a6 !important;
    color: white !important;
    cursor: not-allowed !important;
}

.har-hafta-draw-actions .har-hafta-btn-disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .har-hafta-draw-info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .har-hafta-info-card {
        padding: 12px;
    }
    
    .har-hafta-info-icon {
        width: 25px;
        height: 25px;
    }
    
    .har-hafta-info-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .har-hafta-info-value {
        font-size: 1rem;
    }
    
    .har-hafta-draw-actions .har-hafta-btn {
        padding: 10px 25px !important;
        font-size: 0.85rem !important;
    }
}

@media (max-width: 480px) {
    .har-hafta-draw-info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .har-hafta-info-card {
        padding: 10px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .har-hafta-info-icon {
        width: 22px;
        height: 22px;
    }
    
    .har-hafta-info-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .har-hafta-info-label {
        font-size: 0.7rem;
    }
    
    .har-hafta-info-value {
        font-size: 0.9rem;
    }
    
    .har-hafta-free-entry-note {
        padding: 10px 12px;
        flex-direction: column;
        gap: 5px;
    }
    
    .har-hafta-note-text {
        font-size: 0.8rem;
    }
    
    .har-hafta-draw-actions .har-hafta-btn {
        padding: 8px 20px !important;
        font-size: 0.8rem !important;
    }
}

/* Winners List Styles */
.har-hafta-winners-list {
    margin: 30px 0;
}

.har-hafta-winners-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ca851c;
    position: relative;
}

.har-hafta-winners-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(135deg, #ca851c, #fbd971);
}

.har-hafta-winners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.har-hafta-winner-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.har-hafta-winner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ca851c, #fbd971);
}

.har-hafta-winner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.har-hafta-winner-avatar {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.har-hafta-winner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.har-hafta-winner-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #ca851c, #fbd971);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    box-shadow: 0 2px 10px rgba(202, 133, 28, 0.3);
}

.har-hafta-winner-content {
    text-align: center;
}

.har-hafta-winner-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.har-hafta-winner-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.har-hafta-winner-draw-type,
.har-hafta-winner-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

.har-hafta-winner-draw-type {
    color: #ca851c;
    font-weight: 600;
}

.har-hafta-winner-draw-type svg,
.har-hafta-winner-date svg {
    flex-shrink: 0;
}

.har-hafta-winner-prize {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 12px;
    background: linear-gradient(135deg, rgba(202, 133, 28, 0.1), rgba(251, 217, 113, 0.1));
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ca851c;
    border: 1px solid rgba(202, 133, 28, 0.3);
}

.har-hafta-winner-prize svg {
    flex-shrink: 0;
}

.har-hafta-prize-plus {
    color: #ca851c;
    font-weight: 700;
    margin: 0 2px;
}

/* Empty State */
.har-hafta-winners-empty {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.har-hafta-winners-empty::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ca851c, #fbd971);
}

.har-hafta-empty-icon {
    margin-bottom: 20px;
}

.har-hafta-winners-empty h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px 0;
}

.har-hafta-winners-empty p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .har-hafta-winners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .har-hafta-winners-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .har-hafta-winner-card {
        padding: 15px;
    }
    
    .har-hafta-winner-avatar {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .har-hafta-winner-badge {
        width: 20px;
        height: 20px;
    }
    
    .har-hafta-winner-badge svg {
        width: 10px;
        height: 10px;
    }
    
    .har-hafta-winner-name {
        font-size: 0.8rem;
    }
    
    .har-hafta-winner-meta {
        gap: 4px;
        margin-bottom: 10px;
    }
    
    .har-hafta-winner-draw-type,
    .har-hafta-winner-date {
        font-size: 0.75rem;
    }
    
    .har-hafta-winner-prize {
        font-size: 0.75rem;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .har-hafta-winners-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .har-hafta-winners-empty {
        padding: 40px 15px;
    }
    
    .har-hafta-winners-empty h3 {
        font-size: 1.3rem;
    }
    
    .har-hafta-winners-empty p {
        font-size: 0.9rem;
    }
}

/* Winner Message Styles */
.har-hafta-winner-message {
    margin: 20px 0;
}

.har-hafta-winner-title {
    color: #333333;
    margin-bottom: 25px;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    border-bottom: 2px solid #ca851c;
    padding-bottom: 15px;
}

.har-hafta-winner-card {
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    border: 2px solid #ca851c;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(202, 133, 28, 0.15);
    position: relative;
    overflow: hidden;
}

.har-hafta-winner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ca851c 0%, #fbd971 100%);
}

.har-hafta-winner-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.har-hafta-winner-content {
    max-width: 600px;
    margin: 0 auto;
}

.har-hafta-winner-message-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 25px;
    line-height: 1.5;
}

.har-hafta-prize-highlight {
    background: linear-gradient(90deg, #ca851c 0%, #fbd971 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.har-hafta-draw-type-highlight {
    color: #ca851c;
    font-weight: 700;
}

.har-hafta-winner-instructions {
    background: rgba(202, 133, 28, 0.1);
    border: 1px solid rgba(202, 133, 28, 0.2);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.har-hafta-instruction-icon {
    color: #ca851c;
    flex-shrink: 0;
}

.har-hafta-instruction-text {
    margin: 0;
    font-size: 1rem;
    color: #555555;
    font-weight: 500;
}

.har-hafta-winner-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.har-hafta-winner-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: rgba(202, 133, 28, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(202, 133, 28, 0.1);
}

.har-hafta-detail-label {
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 5px;
    font-weight: 500;
}

.har-hafta-detail-value {
    font-size: 1rem;
    color: #333333;
    font-weight: 600;
}

/* Winner Message Responsive Design */
@media (max-width: 768px) {
    .har-hafta-winner-card {
        padding: 20px;
        margin: 0 10px;
    }
    
    .har-hafta-winner-message-text {
        font-size: 1.1rem;
    }
    
    .har-hafta-winner-instructions {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .har-hafta-winner-details {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .har-hafta-winner-detail {
        padding: 12px;
    }
}