/* Reset */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 30px;
    font-family: "Segoe UI", Impact, Arial Black, sans-serif;
    background: linear-gradient(180deg, #0b1f3a 0%, #102a54 100%);
    color: black;
}

/* Header & Footer */
header, footer {
    text-align: center;
    margin-bottom: 40px;
}

header h1 {
    margin: 0;
    font-size: 64px; /* HUGE typography */
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

/* Gold accent line */
header::after {
    content: "";
    display: block;
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #d4af37, #ffd700);
    margin: 20px auto 0;
    border-radius: 4px;
}

/* Main card */
main {
    background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border-top: 10px solid #c8102e; /* bold red */
}

/* Section headings */
h2 {
    font-size: 32px;
    color: #0b1f3a;
    border-left: 10px solid #c8102e;
    padding-left: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 30px;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 25px;
    border-radius: 12px;
    overflow: hidden;
}

th {
    background: #0b1f3a; /* deep blue */
    color: #ffffff;
    padding: 16px;
    text-align: left;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

td {
    padding: 14px;
    border-bottom: 1px solid #e5eaf2;
    color: #0b1f3a;
}

tr:nth-child(even) {
    background: #f2f6fb;
}

tr:hover {
    background: #e6ecf7;
}

/* Buttons — bold campaign style */
button {
    background: linear-gradient(90deg, #c8102e, #e63946);
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 14px 24px;
    border-radius: 40px;
    font-weight: 900;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
}

button:hover {
    background: linear-gradient(90deg, #a50f25, #c8102e);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(200,16,46,0.5);
}

/* Inputs */
input, select, textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0 18px;
    border-radius: 12px;
    border: 2px solid #0b1f3a;
    font-size: 15px;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #c8102e;
    box-shadow: 0 0 0 3px rgba(200,16,46,0.2);
}

/* Labels */
label {
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #0b1f3a;
}

/* Big patriotic banner stripe effect */
body::before {
    content: "";
    display: block;
    height: 10px;
    width: 100%;
    background: linear-gradient(
        90deg,
        #c8102e 0%,
        #c8102e 33%,
        #ffffff 33%,
        #ffffff 66%,
        #0b1f3a 66%,
        #0b1f3a 100%
    );
    position: fixed;
    top: 0;
    left: 0;
}