/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0, #f1f5f9);
    color: #1e293b;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles */
.site-header {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #3b82f6;
    text-decoration: none;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(59, 130, 246, 0.3));
}

/* Cookie Banner */
.fun-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border-top: 2px solid #3b82f6;
    padding: 1.5rem 2rem;
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    animation: slideUp 0.6s ease forwards;
}

.fun-cookie-banner p {
    margin: 0 0 1rem;
    font-size: 1rem;
    color: #475569;
}

.fun-cookie-button {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #ffffff;
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.fun-cookie-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Age Gate Modal */
.lotto-age-gate {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.5s ease forwards;
}

.age-gate-popup {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    animation: popIn 0.4s ease;
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.age-gate-popup h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.age-gate-popup p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.age-btn-yes {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    margin: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.age-btn-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.age-btn-no {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    margin: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.age-btn-no:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

/* Hero Section */
.lucky-blast {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8, #1e40af);
    color: #ffffff;
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.lucky-blast::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.blast-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.blast-title {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.blast-subtext {
    font-size: 1.4rem;
    color: #e2e8f0;
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 500;
}

/* Modern Timer Styles */
.modern-timer {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 3rem 2.5rem;
    max-width: 600px;
    margin: 3rem auto;
    text-align: center;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.modern-timer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8, #3b82f6);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.timer-header {
    margin-bottom: 2.5rem;
}

.timer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #ffffff;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

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

.timer-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.timer-subtitle {
    font-size: 1rem;
    color: #e2e8f0;
    margin: 0;
    font-weight: 500;
}

.timer-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.timer-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    min-width: 100px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.timer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.timer-card:hover::before {
    left: 100%;
}

.timer-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
}

.timer-number {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.timer-label {
    font-size: 0.9rem;
    color: #cbd5e1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timer-separator {
    font-size: 2.5rem;
    font-weight: 900;
    color: #3b82f6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.timer-progress {
    margin-top: 2rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    border-radius: 4px;
    width: 75%;
    animation: progress 480s linear infinite;
}

@keyframes progress {
    0% { width: 100%; }
    100% { width: 0%; }
}

.progress-text {
    font-size: 0.9rem;
    color: #fbbf24;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blast-call {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1f2937;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blast-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(251, 191, 36, 0.4);
}

/* Syndicate Section */
.lotto-syndicate-section {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    padding: 5rem 2rem;
    color: #1e293b;
}

.zone-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.lotto-syndicate-form {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 3rem;
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.lotto-syndicate-title {
    font-size: 2rem;
    color: #1e293b;
    border-left: 4px solid #3b82f6;
    padding-left: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.lotto-syndicate-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.lotto-syndicate-card {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.lotto-syndicate-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.lotto-syndicate-card.selected {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.card-head {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 700;
}

.card-head span {
    display: block;
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 0.5rem;
}

.card-price {
    font-size: 1.3rem;
    color: #10b981;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.custom-radio {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
}

.custom-radio input[type="radio"] {
    display: none;
}

.radio-mark {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.custom-radio input[type="radio"]:checked + .radio-mark {
    border-color: #3b82f6;
    background: #3b82f6;
}

.custom-radio input[type="radio"]:checked + .radio-mark::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

#lotto-share-count {
    background: #ffffff;
    color: #1e293b;
    border: 2px solid #e2e8f0;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    width: fit-content;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%231e293b' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
    transition: all 0.3s ease;
}

#lotto-share-count:focus {
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.repeat-toggle label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.repeat-toggle label:hover {
    border-color: #3b82f6;
    background: #eff6ff;
}

.repeat-toggle input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    appearance: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.repeat-toggle input[type="checkbox"]:checked {
    border-color: #3b82f6;
    background: #3b82f6;
}

.repeat-toggle input[type="checkbox"]:checked::before {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-weight: 700;
    font-size: 12px;
}

.lotto-total-text {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    color: #1e293b;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.lotto-total-text span {
    color: #3b82f6;
    font-weight: 800;
}

.lotto-btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #ffffff;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    align-self: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.lotto-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Standard Lottery Section */
.lotto-container {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    margin: 0 auto;
    padding: 4rem 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    margin: 2rem auto;
    max-width: 1200px;
}

.lotto-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 3rem;
    text-align: center;
}

.lotto-card {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.lotto-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.lotto-card label {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.lotto-input {
    width: 100%;
    padding: 1rem 1.2rem;
    font-size: 1rem;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    background: #ffffff;
    color: #1e293b;
    transition: all 0.3s ease;
    font-weight: 500;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%231e293b' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.lotto-input:focus {
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.inline-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    color: #1e293b;
    transition: all 0.3s ease;
}

.inline-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    appearance: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.inline-checkbox input[type="checkbox"]:checked {
    border-color: #3b82f6;
    background: #3b82f6;
}

.inline-checkbox input[type="checkbox"]:checked::before {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-weight: 700;
    font-size: 12px;
}

.lotto-options {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.lotto-options .option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
}

.lotto-options .option:hover {
    border-color: #3b82f6;
    background: #eff6ff;
}

.lotto-options .option input[type="radio"] {
    width: 18px;
    height: 18px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    appearance: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.lotto-options .option input[type="radio"]:checked {
    border-color: #3b82f6;
    background: #3b82f6;
}

.lotto-options .option input[type="radio"]:checked::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.lotto-numbers {
    margin-top: 1rem;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem;
    min-height: 80px;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 0.5rem;
}

.lotto-summary {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.lotto-total {
    font-size: 1.5rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 1.5rem;
}

.lotto-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.lotto-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

/* Party Section */
.lotto-party-section {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    padding: 5rem 2rem;
    color: #1e293b;
}

.lotto-party-header h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    border-left: 4px solid #3b82f6;
    padding-left: 1rem;
    margin-bottom: 3rem;
}

.lotto-party-header span {
    color: #ef4444;
    font-weight: 800;
    font-size: 2.2rem;
    margin-right: 0.5rem;
}

.lotto-party-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.lotto-party-card {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.lotto-party-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.lotto-party-card.selected {
    border-color: #ef4444;
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.1);
}

.party-img {
    height: 140px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.party-details h4 {
    font-size: 1.4rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.party-details p {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.party-details strong {
    display: block;
    font-size: 1.3rem;
    color: #10b981;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.party-details strong small {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 500;
    margin-left: 0.25rem;
}

.party-details span {
    font-size: 0.9rem;
    color: #3b82f6;
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
}

.party-details label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #1e293b;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lotto-party-total {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 3rem;
    text-align: center;
    color: #1e293b;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    border: 2px solid #e2e8f0;
}

.lotto-party-total span {
    color: #3b82f6;
    font-weight: 800;
}

/* Benefits Section */
.lucky-benefits {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    padding: 5rem 2rem;
    color: #1e293b;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.benefits-heading {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 4rem;
}

.benefits-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: #3b82f6;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.benefit-icon-new {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #3b82f6;
    animation: iconFloat 3s ease-in-out infinite;
}

.benefit-card p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    font-weight: 500;
}

/* Modern Footer */
.modern-footer {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    color: #1e293b;
    padding: 0;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid #e2e8f0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Main Footer Content */
.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding: 4rem 2rem;
    border-bottom: 1px solid #e2e8f0;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: #3b82f6;
    text-decoration: none;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(59, 130, 246, 0.3));
}

.footer-tagline {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

/* Footer Links */
.footer-links h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 2rem;
    height: 2px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 1px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    transition: width 0.3s ease;
    transform: translateY(-50%);
}

.footer-links a:hover {
    color: #3b82f6;
    padding-left: 1rem;
}

.footer-links a:hover::before {
    width: 0.5rem;
}

/* Footer Bottom */
.footer-bottom {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 2rem;
    border-top: 1px solid #e2e8f0;
}

.footer-bottom-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Certifications */
.footer-certifications {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.age-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.certification-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cert-badge {
    display: block;
    transition: transform 0.3s ease;
}

.cert-badge img {
    width: 60px;
    height: auto;
    border-radius: 8px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.cert-badge:hover {
    transform: translateY(-2px);
}

.cert-badge:hover img {
    opacity: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Copyright */
.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

.footer-copyright p:first-child {
    font-weight: 600;
    color: #475569;
}

/* Responsible Gaming */
.responsible-gaming {
    text-align: right;
}

.responsible-gaming h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.responsible-gaming p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.responsible-gaming a {
    color: #3b82f6;
    text-decoration: none;
    border-bottom: 1px dashed #3b82f6;
    transition: all 0.3s ease;
}

.responsible-gaming a:hover {
    color: #1d4ed8;
    border-bottom-color: #1d4ed8;
}

.responsible-gaming strong {
    color: #1e293b;
    font-weight: 700;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 1.5rem;
    }
    
    .footer-bottom-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-certifications {
        align-items: center;
    }
    
    .responsible-gaming {
        text-align: center;
    }
    
    .footer-logo {
        font-size: 1.8rem;
    }
    
    .footer-tagline {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 2rem 1rem;
    }
    
    .footer-bottom {
        padding: 1.5rem 1rem;
    }
    
    .footer-links h3 {
        font-size: 1rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .certification-badges {
        justify-content: center;
    }
    
    .cert-badge img {
        width: 50px;
    }
}

/* Scroll to Top Button */
.mpz-scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    cursor: pointer;
    transition: all 0.4s ease;
    font-size: 1.2rem;
    font-weight: 700;
}

.mpz-scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

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

@keyframes popIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .blast-title {
        font-size: 2.5rem;
    }
    
    .modern-timer {
        padding: 2rem 1.5rem;
        max-width: 100%;
        margin: 2rem auto;
    }

    .timer-display {
        gap: 1rem;
    }

    .timer-card {
        min-width: 80px;
        padding: 1rem 0.5rem;
    }

    .timer-number {
        font-size: 2.5rem;
    }

    .timer-separator {
        font-size: 2rem;
    }

    .timer-title {
        font-size: 1.5rem;
    }
    
    .lotto-syndicate-options {
        grid-template-columns: 1fr;
    }
    
    .lotto-party-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-cards {
        grid-template-columns: 1fr;
    }
    
    .lotto-footer-inner {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .site-header {
        padding: 1rem;
    }
    
    .lucky-blast {
        padding: 4rem 1rem;
    }
    
    .modern-timer {
        padding: 1.5rem 1rem;
        border-radius: 24px;
    }

    .timer-display {
        gap: 0.5rem;
    }

    .timer-card {
        min-width: 70px;
        padding: 0.75rem 0.25rem;
    }

    .timer-number {
        font-size: 2rem;
    }

    .timer-separator {
        font-size: 1.5rem;
    }

    .timer-title {
        font-size: 1.3rem;
    }

    .timer-subtitle {
        font-size: 0.9rem;
    }
    
    .lotto-syndicate-form,
    .lotto-container {
        padding: 2rem 1rem;
    }
    
    .lotto-options {
        flex-direction: column;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Privacy Policy and Terms Pages */
.mpz-privacy-wrapper {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    padding: 4rem 2rem;
    min-height: 100vh;
}

.mpz-privacy-container {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.mpz-privacy-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    text-align: center;
}

.mpz-privacy-container p {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1.5rem;
}

.mpz-privacy-container ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.mpz-privacy-container li {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.mpz-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 2rem 0 1rem;
    border-left: 4px solid #3b82f6;
    padding-left: 1rem;
}

.mpz-privacy-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    color: #64748b;
    font-size: 0.9rem;
}

/* Terms Page */
.mpz-terms-section {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    padding: 4rem 2rem;
    min-height: 100vh;
}

.mpz-terms-container {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.mpz-terms-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    text-align: center;
}

.mpz-terms-container p {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1.5rem;
}

.mpz-terms-container ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.mpz-terms-container li {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.mpz-terms-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    color: #64748b;
    font-size: 0.9rem;
}

/* Cookies Policy Page */
.lotto-cookies-policy {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    padding: 4rem 2rem;
    min-height: 100vh;
}

.lotto-cookies-container {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.lotto-cookies-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    text-align: center;
}

.lotto-cookies-container p {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1.5rem;
}

.lotto-cookies-container ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.lotto-cookies-container li {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.lotto-cookies-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 2rem 0 1rem;
    border-left: 4px solid #3b82f6;
    padding-left: 1rem;
}

.lotto-cookies-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    color: #64748b;
    font-size: 0.9rem;
}

/* Checkout Page Styles */
.lotto-checkout-section {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    padding: 4rem 2rem;
    min-height: 100vh;
}

.lotto-checkout-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    text-align: center;
    margin-bottom: 3rem;
}

.lotto-checkout-body {
    max-width: 600px;
    margin: 0 auto;
}

.lotto-checkout-form {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(148, 163, 184, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.lotto-checkout-form input,
.lotto-checkout-form select {
    padding: 1rem 1.2rem;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    background: #ffffff;
    font-size: 1rem;
    color: #1e293b;
    transition: all 0.3s ease;
}

.lotto-checkout-form input:focus,
.lotto-checkout-form select:focus {
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.lotto-payment-box {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #3b82f6;
    margin-top: 1rem;
}

.lotto-payment-box p {
    margin: 0.5rem 0;
    font-size: 1rem;
    color: #1e293b;
}

.lotto-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #3b82f6;
    margin: 1rem 0;
}

.lotto-pay-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.lotto-pay-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.lotto-ticket-summary {
    margin-top: 2rem;
    text-align: center;
}

.lotto-ticket-row {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.lotto-ticket-numbers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.lotto-ticket-numbers span {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.lotto-ticket-numbers span.powerball {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

/* Responsive Design for Policy Pages */
@media (max-width: 768px) {
    .mpz-privacy-container,
    .mpz-terms-container,
    .lotto-cookies-container,
    .lotto-checkout-form {
        padding: 2rem 1.5rem;
    }
    
    .mpz-privacy-title,
    .mpz-terms-title,
    .lotto-cookies-title,
    .lotto-checkout-header h1 {
        font-size: 2rem;
    }
    
    .mpz-subtitle,
    .lotto-cookies-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .mpz-privacy-wrapper,
    .mpz-terms-section,
    .lotto-cookies-policy,
    .lotto-checkout-section {
        padding: 2rem 1rem;
    }
    
    .mpz-privacy-container,
    .mpz-terms-container,
    .lotto-cookies-container,
    .lotto-checkout-form {
        padding: 1.5rem 1rem;
    }
    
    .lotto-ticket-numbers span {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}
