/* Vancouver26 Page Specific Styles */

/* Contest Button Styles */
.contest-btn {
    background: #FBBD47 !important;
    color: #175E54 !important;
    padding: 14px 32px !important;
    border-radius: 100px;
    font-weight: 500;
    transition: all 0.3s ease;
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(235, 172, 33, 0.2);
}

.contest-btn:hover {
    background: #D39826 !important;    
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(212, 148, 30, 0.3);
}

.donate-btn {
    padding: 14px 32px !important;
}

/* FIFA Contest Body */
.fifa-contest-body {
    padding: 60px 20px;
}

.fifa-contest-container {
    max-width: 1200px;
    margin: 0 auto;
}

.fifa-contest-intro {
    margin-bottom: 40px;
}

.fifa-contest-intro h2 {
    font-family: 'Serifa', serif;
    font-size: 24px;
    color: #175E54;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.fifa-contest-intro p {
    font-family: 'Scandia', Arial, sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.fifa-contest-intro .highlight {
    color: #175E54;
    font-weight: 700;
}

/* Draw Rules Section */
.draw-rules {
    background: #F0F9F7;
    padding: 25px;
    border-left: 4px solid #00BC70;
    margin: 30px 0;
    border-radius: 4px;
}

.draw-rules ol {
    margin: 15px 0;
    padding-left: 25px;
}

.draw-rules li {
    margin: 10px 0;
    line-height: 1.6;
    color: #333;
}

/* Draws Table */
.draws-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
}

.draws-table th,
.draws-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.draws-table th {
    background-color: #175E54;
    color: white;
    font-weight: 700;
    font-family: 'Serifa', serif;
}

.draws-table th:last-child {
    padding-left: 50px;
}

.draws-table tr:hover {
    background-color: #f9f9f9;
}

.draws-table td {
    color: #333;
}

.draw-period {
    font-weight: 700;
    color: #175E54;
}

.draw-actions {
    text-align: center;
    margin-top: 20px;
}

/* Donate Now Button */
.donate-now-btn {
    display: inline-block;
    background-color: #FBBD47;
    color: #175E54;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-family: 'Serifa', serif;
}

.donate-now-btn:hover {
    background-color: #D39826;            
}

.winner-list-link {
    display: inline-block;
    color: #175E54;
    text-decoration: underline;
    font-weight: 700;
    cursor: pointer;
}

/* Draw Footer */
.draw-footer {
    margin-top: 40px;                       
}

.draw-footer p {
    color: #666;
    font-size: 16px;
    margin: 10px 0;
    line-height: 1.6;
}

.draw-footer .rules-link {
    color: #00BC70;
    text-decoration: none;
    font-weight: 700;
}

.draw-footer .rules-link:hover {
    text-decoration: underline;
}

.tax-deductible {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: #FFF9E6;
    border-radius: 4px;
    font-size: 16px;
    color: #175E54;
    font-weight: 700;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .draws-table th:last-child {
        padding-left: 27px;
    }
}

/* Mobile Responsive - Draws Table */
@media (max-width: 767px) {
    .donate-btn {
        padding: 20px 32px !important;
        background: #175E54 !important;
        color: white !important;
        text-align: center;
        border-radius: 100px !important;
        margin-top: 10px;
        border: none;
        font-size: 0.95em;
    }
    
    .donate-btn:hover {
        background: #0d4038 !important;
    }
    
    .draws-table {
        display: block;
        overflow-x: auto;
    }
    
    .draws-table thead {
        display: none;
    }
    
    .draws-table tbody {
        display: block;
    }
    
    .draws-table tr {
        display: block;
        margin-bottom: 30px;
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 15px;
        background: #fff;
    }
    
    .draws-table td {
        display: block;
        text-align: left;
        padding: 10px 0;
        border-bottom: none;
    }
    
    .draws-table td:before {
        content: attr(data-label);
        font-weight: 700;
        color: #175E54;
        display: block;
        margin-bottom: 5px;
        font-family: 'Serifa', serif;
    }
    
    .draw-actions {
        margin-top: 15px;
        text-align: left;
    }
}

/* Small Mobile */
@media (max-width: 425px) {
    .donate-btn {
        padding: 16px 24px !important;
        font-size: 0.85em;
    }
}
