* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', serif;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    min-height: 100vh;
    padding: 20px;
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

/* Navigation Bar Styles */
.navbar {
    background: linear-gradient(135deg, #0f2027, #203a43);
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-link {
    flex: 1;
    text-align: center;
    padding: 18px 30px;
    color: white;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.nav-link:last-child {
    border-right: none;
}

.nav-link:hover {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
}

.nav-link:active {
    background: rgba(212, 175, 55, 0.3);
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: white;
    text-align: center;
    padding: 40px 20px;
    border-bottom: 5px solid #d4af37;
}

.logo {
    font-size: 48px;
    margin-bottom: 10px;
}

.header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.tagline {
    font-style: italic;
    font-size: 1.1em;
    opacity: 0.9;
}

/* Hero Image Styles */
.hero-image {
    position: relative;
    background: #000;
    overflow: hidden;
}

.champion-photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px;
}

.image-caption {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
    color: white;
    padding: 20px;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.image-caption p {
    margin: 0;
    font-size: 1.2em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Press Release Styles */
.press-release {
    padding: 40px;
    background: #ffffff;
}

.press-header {
    text-align: center;
    border-bottom: 3px solid #333;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.press-header h2 {
    font-size: 2em;
    letter-spacing: 3px;
    font-weight: bold;
}

.date {
    color: #666;
    font-size: 0.9em;
    margin-top: 10px;
}

.headline {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #1e3c72;
    line-height: 1.3;
}

.subheadline {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 25px;
}

.body-text p {
    margin-bottom: 20px;
    text-align: justify;
    color: #333;
    font-size: 1.05em;
}

.separator {
    text-align: center;
    margin: 30px 0;
    font-size: 1.5em;
    color: #666;
}

.contact-info {
    background: #f5f5f5;
    padding: 20px;
    border-left: 4px solid #d4af37;
    margin-top: 30px;
}

.contact-info p {
    color: #333;
    line-height: 1.8;
}

/* Payment Tracker Styles */
.payment-tracker {
    background: #f9f9f9;
    padding: 40px;
    border-top: 5px solid #d4af37;
}

.payment-tracker h2 {
    text-align: center;
    color: #1e3c72;
    margin-bottom: 15px;
    font-size: 2em;
}

.payment-note {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
}

.table-container {
    overflow-x: auto;
    margin-bottom: 40px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background: linear-gradient(135deg, #2c5364, #203a43);
    color: white;
}

th {
    padding: 15px;
    text-align: left;
    font-weight: bold;
    font-size: 1.05em;
}

tbody tr {
    border-bottom: 1px solid #ddd;
    transition: background-color 0.3s;
}

tbody tr:hover {
    background-color: #f0f8ff;
}

tbody tr:last-child {
    border-bottom: none;
}

td {
    padding: 15px;
    color: #333;
}

.status-paid {
    color: #27ae60;
    font-weight: bold;
}

.status-partial {
    color: #3498db;
    font-weight: bold;
}

.status-pending {
    color: #f39c12;
    font-weight: bold;
}

.status-delinquent {
    color: #e74c3c;
    font-weight: bold;
}

/* Payment Instructions Styles */
.payment-instructions {
    background: linear-gradient(135deg, #fff5e6, #ffe6cc);
    border: 3px solid #e74c3c;
    border-radius: 10px;
    padding: 30px;
    margin-top: 30px;
    text-align: center;
}

.payment-instructions h3 {
    color: #e74c3c;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.payment-instructions > p {
    color: #333;
    font-size: 1.1em;
    margin-bottom: 25px;
    line-height: 1.6;
}

.payment-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0;
}

.payment-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px;
}

.payment-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.payment-btn:active {
    transform: translateY(-1px);
}

.venmo-btn {
    background: linear-gradient(135deg, #3d95ce, #008cff);
    color: white;
}

.venmo-btn:hover {
    background: linear-gradient(135deg, #2d85be, #007ae6);
}

.cashapp-btn {
    background: linear-gradient(135deg, #00d54b, #00c244);
    color: white;
}

.cashapp-btn:hover {
    background: linear-gradient(135deg, #00c244, #00b03c);
}

.btn-icon {
    font-size: 2em;
}

.btn-text {
    font-size: 1.2em;
}

.btn-handle {
    font-size: 0.95em;
    opacity: 0.9;
    font-weight: normal;
}

.payment-reminder {
    color: #666;
    font-style: italic;
    font-size: 1em;
    margin-top: 20px;
}

/* Footer Styles */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

.footer p:first-child {
    font-size: 1.3em;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 0.8em;
    opacity: 0.7;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: row;
        gap: 0;
    }

    .nav-link {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: none;
        padding: 15px 10px;
        font-size: 0.95em;
    }

    .nav-link:last-child {
        border-right: none;
    }

    .header h1 {
        font-size: 1.8em;
    }

    .champion-photo {
        max-height: 400px;
    }

    .image-caption p {
        font-size: 1em;
        padding: 10px;
    }

    .press-release {
        padding: 20px;
    }

    .headline {
        font-size: 1.4em;
    }

    .payment-tracker {
        padding: 20px;
    }

    table {
        font-size: 0.9em;
    }

    th,
    td {
        padding: 10px 8px;
    }

    .payment-instructions {
        padding: 20px;
    }

    .payment-instructions h3 {
        font-size: 1.4em;
    }

    .payment-buttons {
        flex-direction: row;
        gap: 10px;
    }

    .payment-btn {
        flex: 1;
        min-width: unset;
        padding: 15px 10px;
        font-size: 0.9em;
    }

    .btn-icon {
        font-size: 1.5em;
    }

    .btn-text {
        font-size: 1em;
    }

    .btn-handle {
        font-size: 0.85em;
    }
}