/* ============================================
   GIVEAWAY LANDING PAGE - COMPLETE STYLES
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #FFF8E1 0%, #FFFDE7 50%, #F1F8E9 100%);
    min-height: 100vh;
    line-height: 1.6;
    color: #1A1A1A;
}

/* ============================================
   FALLING MONEY ANIMATION
   ============================================ */
.money-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.money {
    position: absolute;
    font-size: 2rem;
    animation: fall linear infinite;
    opacity: 0.3;
}

.money:nth-child(1) { left: 5%; animation-duration: 8s; animation-delay: 0s; }
.money:nth-child(2) { left: 15%; animation-duration: 10s; animation-delay: 1s; }
.money:nth-child(3) { left: 25%; animation-duration: 7s; animation-delay: 2s; }
.money:nth-child(4) { left: 35%; animation-duration: 9s; animation-delay: 0.5s; }
.money:nth-child(5) { left: 45%; animation-duration: 11s; animation-delay: 3s; }
.money:nth-child(6) { left: 55%; animation-duration: 8s; animation-delay: 1.5s; }
.money:nth-child(7) { left: 65%; animation-duration: 10s; animation-delay: 2.5s; }
.money:nth-child(8) { left: 75%; animation-duration: 7s; animation-delay: 4s; }
.money:nth-child(9) { left: 85%; animation-duration: 9s; animation-delay: 0.8s; }
.money:nth-child(10) { left: 95%; animation-duration: 12s; animation-delay: 3.5s; }
.money:nth-child(11) { left: 10%; animation-duration: 8.5s; animation-delay: 5s; }
.money:nth-child(12) { left: 30%; animation-duration: 9.5s; animation-delay: 4.5s; }
.money:nth-child(13) { left: 50%; animation-duration: 7.5s; animation-delay: 6s; }
.money:nth-child(14) { left: 70%; animation-duration: 10.5s; animation-delay: 5.5s; }
.money:nth-child(15) { left: 90%; animation-duration: 8s; animation-delay: 6.5s; }

@keyframes fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* ============================================
   MAIN CONTAINER
   ============================================ */
.main-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* ============================================
   AD CONTAINERS
   ============================================ */
.ad-container {
    background: #F5F5F5;
    border: 2px dashed #BDBDBD;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #9E9E9E;
    font-size: 0.85rem;
    margin: 20px auto;
    gap: 5px;
}

.ad-container.leaderboard {
    height: 90px;
    max-width: 728px;
}

.ad-container.rectangle {
    width: 300px;
    height: 250px;
}

.ad-size {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* ============================================
   NATIVE AD CONTAINERS (Google Ad Manager)
   ============================================ */
.native-ad-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    width: 100%;
    min-height: 100px;
    overflow: hidden;
    position: relative;
    padding-top: 20px;
}

.native-ad-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    min-height: 280px;
    background: #FAFAFA;
    border: 1px dashed #E0E0E0;
    border-radius: 8px;
}

/* Loading state */
.native-ad-slot::before {
    content: "📢 Loading Ad...";
    color: #9E9E9E;
    font-size: 0.9rem;
    font-weight: 500;
}

/* When ad loads, remove empty state styling */
.native-ad-slot:not(:empty)::before {
    display: none;
}

.native-ad-slot:not(:empty) {
    background: transparent;
    border: none;
    min-height: auto;
}

/* Hide empty ad containers that failed to load */
.native-ad-container:has(.native-ad-slot:empty) {
    opacity: 0.5;
}

/* Ad label */
.native-ad-container::before {
    content: "Advertisement";
    display: block;
    text-align: center;
    font-size: 0.7rem;
    color: #9E9E9E;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
}

/* Legacy support - Native Ad Wrapper */
.native-ad-wrapper {
    background: transparent;
    border: none;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    overflow: hidden;
}

/* Ensure native ads are responsive */
.native-ad-slot > div,
.native-ad-slot > iframe {
    max-width: 100% !important;
}

/* Hide empty ad containers gracefully */
.native-ad-slot:empty::before {
    content: "📢 Loading Ad...";
    color: #9E9E9E;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    background: #F5F5F5;
    border: 2px dashed #BDBDBD;
    border-radius: 12px;
    width: 100%;
}

/* ============================================
   FORM CARD
   ============================================ */
.form-card {
    background: white;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    margin: 25px 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-card.fade-in {
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   GIVEAWAY BADGE
   ============================================ */
.giveaway-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #FF6F00, #FF9800);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.3);
}

.giveaway-badge .icon {
    font-size: 1.1rem;
}

/* ============================================
   TITLES
   ============================================ */
.main-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 20px 0 10px 0;
    color: #1A1A1A;
    line-height: 1.3;
}

.main-title .amount {
    color: #1B5E20;
    text-shadow: 0 2px 4px rgba(27, 94, 32, 0.2);
}

.subtitle {
    font-size: 1.1rem;
    color: #6B6B6B;
    margin-bottom: 25px;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    display: flex;
    gap: 20px;
    padding: 15px;
    background: #F8F9FA;
    border-radius: 12px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.stat-item.urgent {
    color: #C62828;
}

.stat-item.urgent .value {
    font-weight: 600;
}

.stat-item .icon {
    font-size: 1.2rem;
}

.stat-item .label {
    color: #6B6B6B;
}

.stat-item .value {
    color: #1A1A1A;
    font-weight: 500;
}

/* ============================================
   PROGRESS SECTION
   ============================================ */
.progress-section {
    margin-bottom: 30px;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.step-text {
    font-size: 0.9rem;
    color: #6B6B6B;
    font-weight: 500;
}

.step-percentage {
    font-size: 0.9rem;
    color: #1B5E20;
    font-weight: 600;
}

.progress-bar {
    height: 10px;
    background: #E8E8E8;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1B5E20, #2E7D32, #43A047);
    border-radius: 10px;
    transition: width 0.5s ease;
}

/* ============================================
   FORM ELEMENTS
   ============================================ */
.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.form-label .required {
    color: #C62828;
}

.form-hint {
    font-weight: 400;
    color: #9E9E9E;
    font-size: 0.85rem;
}

.form-input {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #E8E8E8;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #FAFAFA;
    color: #1A1A1A;
}

.form-input:focus {
    outline: none;
    border-color: #1B5E20;
    background: white;
    box-shadow: 0 0 0 4px rgba(27, 94, 32, 0.1);
    color: #1A1A1A;
}

.form-input::placeholder {
    color: #BDBDBD;
}

/* Ensure text is always dark in inputs */
input.form-input,
textarea.form-input,
select.form-input {
    color: #1A1A1A !important;
    -webkit-text-fill-color: #1A1A1A;
}

/* Textarea specific */
.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   DREAM OPTIONS (NEW - Financial Dream Selection)
   ============================================ */
.dream-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.dream-option {
    cursor: pointer;
}

.dream-option input {
    display: none;
}

.dream-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px 12px;
    background: #F8F9FA;
    border: 2px solid #E8E8E8;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.dream-option input:checked + .dream-content {
    background: linear-gradient(135deg, #E8F5E9, #F1F8E9);
    border-color: #1B5E20;
    box-shadow: 0 4px 15px rgba(27, 94, 32, 0.2);
}

.dream-icon {
    font-size: 2rem;
}

.dream-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1A1A1A;
    text-align: center;
}

.dream-option input:checked + .dream-content .dream-label {
    color: #1B5E20;
}

/* ============================================
   PAYMENT GRID (NEW - Compact Payment Options)
   ============================================ */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.payment-option {
    cursor: pointer;
}

.payment-option input {
    display: none;
}

.payment-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 8px;
    background: #F8F9FA;
    border: 2px solid #E8E8E8;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.payment-option input:checked + .payment-content {
    background: linear-gradient(135deg, #E8F5E9, #F1F8E9);
    border-color: #1B5E20;
    box-shadow: 0 4px 12px rgba(27, 94, 32, 0.2);
}

.payment-icon {
    font-size: 1.5rem;
}

.payment-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #4A4A4A;
    text-align: center;
}

.payment-option input:checked + .payment-content .payment-label {
    color: #1B5E20;
}

/* ============================================
   OPTION CARDS (Radio Options)
   ============================================ */
.option-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.options-grid {
    display: grid;
    gap: 12px;
}

.options-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
}

.option-card {
    cursor: pointer;
}

.option-card input {
    display: none;
}

.option-content {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: #F8F9FA;
    border: 2px solid #E8E8E8;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.option-card input:checked + .option-content {
    background: linear-gradient(135deg, #E8F5E9, #F1F8E9);
    border-color: #1B5E20;
    box-shadow: 0 4px 15px rgba(27, 94, 32, 0.2);
}

.option-icon {
    font-size: 1.8rem;
}

.option-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.option-label {
    font-weight: 600;
    color: #1A1A1A;
    font-size: 0.95rem;
}

.option-sublabel {
    font-size: 0.8rem;
    color: #6B6B6B;
}

.option-card input:checked + .option-content .option-label {
    color: #1B5E20;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #1B5E20, #2E7D32);
    color: white;
    box-shadow: 0 4px 15px rgba(27, 94, 32, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2E7D32, #43A047);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 94, 32, 0.4);
}

.btn-secondary {
    background: #F5F5F5;
    color: #4A4A4A;
    border: 2px solid #E8E8E8;
}

.btn-secondary:hover {
    background: #EEEEEE;
}

.btn-gold {
    background: linear-gradient(135deg, #FF8F00, #FFB300);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 143, 0, 0.3);
}

.btn-gold:hover {
    background: linear-gradient(135deg, #FFB300, #FFC107);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 143, 0, 0.4);
}

.btn-block {
    width: 100%;
}

.btn-group {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.btn-group .btn {
    flex: 1;
}

/* ============================================
   CHECKBOX
   ============================================ */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    accent-color: #1B5E20;
}

.checkbox-label {
    font-size: 0.9rem;
    color: #4A4A4A;
    line-height: 1.5;
}

.checkbox-label a {
    color: #1B5E20;
    text-decoration: none;
    font-weight: 500;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* ============================================
   SUMMARY BOX
   ============================================ */
.summary-box {
    background: linear-gradient(135deg, #F8F9FA, #ECEFF1);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid #E8E8E8;
}

.summary-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1A1A1A;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #E8E8E8;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #E8E8E8;
}

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

.summary-label {
    color: #6B6B6B;
    font-size: 0.9rem;
}

.summary-value {
    font-weight: 600;
    color: #1A1A1A;
    font-size: 0.9rem;
}

/* ============================================
   SUCCESS CARD (Thank You Page)
   ============================================ */
.success-card {
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 1s ease infinite;
}

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

.success-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1B5E20;
    margin-bottom: 10px;
}

.success-subtitle {
    font-size: 1.1rem;
    color: #4A4A4A;
    margin-bottom: 25px;
}

.entry-details {
    background: linear-gradient(135deg, #E8F5E9, #F1F8E9);
    border-radius: 16px;
    padding: 25px;
    border: 2px solid #4CAF50;
}

.entry-id {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1B5E20;
    letter-spacing: 2px;
}

.result-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #1B5E20;
    font-weight: 600;
}

/* Share Section */
.share-section {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid #E8E8E8;
}

.share-title {
    font-weight: 600;
    color: #4A4A4A;
    margin-bottom: 15px;
}

.share-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.share-btn.whatsapp {
    background: #25D366;
}

.share-btn.facebook {
    background: #1877F2;
}

.share-btn.twitter {
    background: #1DA1F2;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ============================================
   CONTENT SECTION
   ============================================ */
.content-section {
    margin: 30px 0;
    padding-top: 30px;
    border-top: 1px solid #E8E8E8;
}

.section-header {
    text-align: center;
    margin-bottom: 25px;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 0.95rem;
    color: #6B6B6B;
}

/* ============================================
   ARTICLE CARDS
   ============================================ */
.articles-grid {
    display: grid;
    gap: 20px;
}

.article-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: inherit;
    display: flex;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.article-image {
    min-width: 100px;
    background: linear-gradient(135deg, #E8F5E9, #F1F8E9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.article-content {
    padding: 20px;
    flex: 1;
}

.article-category {
    display: inline-block;
    padding: 4px 10px;
    background: #E8F5E9;
    color: #1B5E20;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.article-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 8px;
    line-height: 1.4;
}

.article-excerpt {
    font-size: 0.85rem;
    color: #6B6B6B;
    line-height: 1.5;
    margin-bottom: 10px;
}

.article-meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: #9E9E9E;
}

/* ============================================
   RANDOM ARTICLE DISPLAY (NEW - Full Article Content)
   ============================================ */
.random-article-section {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin: 25px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.random-article-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #E8F5E9;
}

.random-article-badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, #1B5E20, #2E7D32);
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.random-article-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1A1A1A;
    line-height: 1.3;
    margin-bottom: 10px;
}

.random-article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 0.85rem;
    color: #6B6B6B;
}

.random-article-body {
    line-height: 1.8;
    color: #4A4A4A;
}

.random-article-body h2 {
    font-size: 1.2rem;
    color: #1B5E20;
    margin: 25px 0 12px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #E8F5E9;
}

.random-article-body h3 {
    font-size: 1.05rem;
    color: #1A1A1A;
    margin: 20px 0 10px 0;
}

.random-article-body p {
    margin-bottom: 15px;
}

.random-article-body ul, .random-article-body ol {
    margin: 15px 0;
    padding-left: 25px;
}

.random-article-body li {
    margin-bottom: 8px;
}

.random-article-body .highlight-tip {
    background: linear-gradient(135deg, #FFF8E1, #FFFDE7);
    border-left: 4px solid #FFB300;
    padding: 15px 20px;
    border-radius: 0 12px 12px 0;
    margin: 20px 0;
    font-weight: 500;
    color: #F57C00;
}

.random-article-body .info-box {
    background: linear-gradient(135deg, #E8F5E9, #F1F8E9);
    border-left: 4px solid #1B5E20;
    padding: 15px 20px;
    border-radius: 0 12px 12px 0;
    margin: 20px 0;
}

.random-article-cta {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #E8E8E8;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.contact-info-box {
    background: linear-gradient(135deg, #E8F5E9, #F1F8E9);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid #C8E6C9;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(27, 94, 32, 0.1);
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-item:first-child {
    padding-top: 0;
}

.contact-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 0.8rem;
    color: #6B6B6B;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 1rem;
    font-weight: 600;
    color: #1B5E20;
}

.email-link {
    text-decoration: none;
    color: #1B5E20;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #2E7D32;
    text-decoration: underline;
}

/* FAQ Styles */
.faq-item {
    padding: 18px 0;
    border-bottom: 1px solid #E8E8E8;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.faq-answer {
    color: #6B6B6B;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   COUNTDOWN BUTTON SYSTEM
   ============================================ */
.countdown-section {
    background: linear-gradient(135deg, #FFF8E1, #FFFDE7);
    border: 2px solid #FFD54F;
    border-radius: 20px;
    padding: 30px;
    margin: 25px 0;
    text-align: center;
}

.countdown-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #F57C00;
    margin-bottom: 15px;
}

.countdown-timer-display {
    font-size: 3rem;
    font-weight: 800;
    color: #FF6F00;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(255, 111, 0, 0.2);
}

.countdown-subtitle {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.countdown-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #9E9E9E, #BDBDBD);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: not-allowed;
    transition: all 0.3s ease;
    min-width: 250px;
}

.countdown-btn.active {
    background: linear-gradient(135deg, #FF6F00, #FF9800);
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(255, 111, 0, 0.4);
    animation: pulse 1.5s infinite;
}

.countdown-btn.active:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 111, 0, 0.5);
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
    text-align: center;
    padding: 30px 20px;
    margin-top: 30px;
    border-top: 1px solid #E8E8E8;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #6B6B6B;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #1B5E20;
}

.footer-copyright {
    font-size: 0.8rem;
    color: #9E9E9E;
    line-height: 1.6;
}

/* ============================================
   CONFETTI ANIMATION
   ============================================ */
.confetti {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.confetti-piece {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #FFB300;
    animation: confettiFall linear forwards;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .main-container {
        padding: 15px;
    }
    
    .form-card {
        padding: 25px 20px;
    }
    
    .main-title {
        font-size: 1.8rem;
    }
    
    .stats-bar {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .options-grid.three-col {
        grid-template-columns: 1fr;
    }
    
    .dream-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payment-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .article-card {
        flex-direction: column;
    }
    
    .article-image {
        min-height: 120px;
    }
    
    .btn-group {
        flex-direction: column;
    }
    
    .ad-container.leaderboard {
        height: 100px;
    }
    
    .ad-container.rectangle {
        width: 100%;
        max-width: 300px;
    }
    
    .random-article-title {
        font-size: 1.2rem;
    }
    
    .random-article-meta {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .dream-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payment-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .main-title {
        font-size: 1.5rem;
    }
    
    .success-title {
        font-size: 1.5rem;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        width: 100%;
        justify-content: center;
    }
}

