/* Enter This Week's Draw Styles */

/* Hero Section */
.cta-hero {
    background: var(--primary);
    padding: var(--spacing-2xl) 0;
    color: var(--text-light);
}

/* Grid Layouts */
.status-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin: var(--spacing-2xl) 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
}

/* Card Styles */
.status-card,
.step-card {
    background: var(--primary);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    color: var(--text-light);
    box-shadow: var(--shadow-lg);
}

.status-icon,
.step-icon {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: var(--spacing-md);
}

.status-card h3,
.step-card h3 {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

/* Progress Bar Styles */
.progress-bar {
    width: 100%;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: var(--spacing-lg) 0;
}

.progress {
    height: 100%;
    background: var(--secondary);
    border-radius: 10px;
    position: relative;
}

.progress span {
    position: absolute;
    width: 100%;
    text-align: center;
    font-size: var(--font-size-sm);
    line-height: 20px;
    color: var(--text-light);
    font-weight: bold;
}

/* Power Options Styles */
.power-options {
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    margin: var(--spacing-md) 0;
}

.power-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-sm);
    transition: background-color 0.3s ease;
}

.power-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.power-item input[type="radio"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    margin: 0;
    cursor: pointer;
    position: relative;
}

.power-item input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--secondary);
    border-radius: 50%;
}

.power-item label {
    cursor: pointer;
    color: var(--text-light);
}

/* Price Table Styles */
.price-table {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    margin: var(--spacing-lg) 0;
    overflow: hidden;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row:hover {
    background: rgba(255, 255, 255, 0.05);
}

.price-row.featured {
    background: rgba(255, 215, 0, 0.1);
}

.price-row.featured:hover {
    background: rgba(255, 215, 0, 0.15);
}

.price-row small {
    color: var(--secondary);
    font-size: var(--font-size-sm);
    margin-left: var(--spacing-sm);
}

/* Quantity Selector Styles */
.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.qty-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: var(--secondary);
    transform: scale(1.1);
}

.qty-btn:active {
    transform: scale(0.95);
}

/* Confirmation Popup Styles */
.confirmation-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.confirmation-content {
    background: var(--background);
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius-lg);
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.confirmation-content i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: var(--spacing-lg);
}

.confirmation-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin: var(--spacing-xl) 0;
}

.transaction-details {
    text-align: left;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    color: var(--text-secondary);
}

.transaction-details h3 {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.btn-text {
    background: none;
    border: none;
    color: var(--secondary);
    cursor: pointer;
    padding: var(--spacing-sm) var(--spacing-md);
    transition: color 0.3s ease;
}

.btn-text:hover {
    color: var(--text-light);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .status-grid {
        grid-template-columns: 1fr;
    }

    .confirmation-content {
        width: 95%;
        padding: var(--spacing-xl);
    }

    .confirmation-buttons {
        flex-direction: column;
    }

    .power-options {
        padding: var(--spacing-sm);
    }

    .quantity-selector {
        flex-wrap: wrap;
    }
}

/* Animation Styles */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.confirmation-popup {
    animation: fadeIn 0.3s ease;
}
