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

body {
    font-family: 'Courier New', monospace;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #e8e8e8;
    line-height: 1.6;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.7);
    border: 3px solid #f39c12;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 30px rgba(243, 156, 18, 0.5);
}

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

h1 {
    font-size: 3em;
    color: #f39c12;
    text-shadow: 3px 3px 0 #c0392b, 6px 6px 10px rgba(0, 0, 0, 0.8);
    letter-spacing: 3px;
    margin-bottom: 7px;
}

h2 {
    font-size: 1.8em;
    color: #3498db;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

.subtitle {
    font-size: 1.2em;
    color: #95a5a6;
    margin-top: 10px;
    font-style: italic;
}

.info-section {
    margin-bottom: 40px;
}

.info-box {
    background: rgba(52, 152, 219, 0.1);
    border: 2px solid #3498db;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.info-box h3 {
    color: #f39c12;
    font-size: 1.5em;
    margin-bottom: 15px;
    text-align: center;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

.info-box ul {
    list-style: none;
    padding-left: 0;
}

.info-box li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.info-box li:before {
    content: "⚔️";
    position: absolute;
    left: 0;
}

.info-box strong {
    color: #f39c12;
}

.note {
    margin-top: 15px;
    font-style: italic;
    color: #95a5a6;
    border-top: 1px solid #34495e;
    padding-top: 10px;
}

.rsvp-section {
    background: rgba(192, 57, 43, 0.1);
    border: 2px solid #c0392b;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
}

.rsvp-section h3 {
    color: #c0392b;
    font-size: 1.4em;
    text-align: center;
    margin-bottom: 7px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

.rsvp-intro {
    text-align: center;
    color: #ecf0f1;
    margin-bottom: 25px;
    font-size: 1.1em;
}

.taunt-controls {
    text-align: center;
    margin-bottom: 25px;
}

.random-taunt-btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    border: none;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.random-taunt-btn:hover {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(46, 204, 113, 0.5);
}

.random-taunt-btn:active {
    transform: translateY(0);
}

.rsvp-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.rsvp-form input,
.rsvp-form select,
.rsvp-form textarea {
    padding: 12px;
    border: 2px solid #34495e;
    background: rgba(0, 0, 0, 0.5);
    color: #ecf0f1;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-size: 1em;
}

.rsvp-form input:focus,
.rsvp-form select:focus,
.rsvp-form textarea:focus {
    outline: none;
    border-color: #f39c12;
    box-shadow: 0 0 10px rgba(243, 156, 18, 0.5);
}

.rsvp-form button {
    padding: 15px;
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    color: white;
    border: none;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.rsvp-form button:hover {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(231, 76, 60, 0.5);
}

.rsvp-form button:active {
    transform: translateY(0);
}

.attendees-list {
    margin-top: 30px;
}

.attendees-list h4 {
    color: #f39c12;
    font-size: 1.5em;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #f39c12;
    padding-bottom: 10px;
}

#attendeesContainer {
    display: grid;
    gap: 15px;
}

.attendee-card {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #34495e;
    border-left: 5px solid #f39c12;
    border-radius: 5px;
    padding: 15px;
    transition: all 0.3s;
}

.attendee-card:hover {
    border-left-color: #c0392b;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.attendee-name {
    font-size: 1.3em;
    color: #f39c12;
    margin-bottom: 8px;
    font-weight: bold;
}

.attendee-name.clickable {
    cursor: pointer;
    transition: all 0.2s;
}

.attendee-name.clickable:hover {
    color: #e67e22;
    text-shadow: 0 0 10px rgba(243, 156, 18, 0.8);
    transform: translateX(5px);
}

.attendee-gear {
    color: #3498db;
    margin-bottom: 5px;
}

.attendee-items {
    color: #2ecc71;
    margin-bottom: 5px;
}

.attendee-message {
    color: #95a5a6;
    font-style: italic;
    margin-top: 10px;
    border-top: 1px solid #34495e;
    padding-top: 10px;
}

.loading {
    text-align: center;
    color: #95a5a6;
    padding: 20px;
}

.error {
    background: rgba(192, 57, 43, 0.2);
    border: 2px solid #c0392b;
    color: #e74c3c;
    padding: 15px;
    border-radius: 5px;
    margin: 15px 0;
    text-align: center;
}

.success {
    background: rgba(46, 204, 113, 0.2);
    border: 2px solid #2ecc71;
    color: #2ecc71;
    padding: 15px;
    border-radius: 5px;
    margin: 15px 0;
    text-align: center;
}

.trash-talk-section {
    background: rgba(155, 89, 182, 0.1);
    border: 2px solid #9b59b6;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
}

.trash-talk-section h3 {
    color: #9b59b6;
    font-size: 2em;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

.trash-talk-intro {
    text-align: center;
    color: #ecf0f1;
    margin-bottom: 25px;
    font-size: 1.1em;
}

.message-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.message-form input,
.message-form textarea {
    padding: 12px;
    border: 2px solid #34495e;
    background: rgba(0, 0, 0, 0.5);
    color: #ecf0f1;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-size: 1em;
}

.message-form input:focus,
.message-form textarea:focus {
    outline: none;
    border-color: #9b59b6;
    box-shadow: 0 0 10px rgba(155, 89, 182, 0.5);
}

.message-form button {
    padding: 15px;
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
    border: none;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.message-form button:hover {
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(155, 89, 182, 0.5);
}

.message-form button:active {
    transform: translateY(0);
}

.message-board {
    display: grid;
    gap: 15px;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 10px;
}

.message-board::-webkit-scrollbar {
    width: 8px;
}

.message-board::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.message-board::-webkit-scrollbar-thumb {
    background: #9b59b6;
    border-radius: 4px;
}

.message-board::-webkit-scrollbar-thumb:hover {
    background: #8e44ad;
}

.message-card {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #34495e;
    border-left: 5px solid #9b59b6;
    border-radius: 5px;
    padding: 15px;
    transition: all 0.3s;
}

.message-card:hover {
    border-left-color: #e74c3c;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(155, 89, 182, 0.3);
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #34495e;
}

.message-author {
    font-weight: bold;
    color: #f39c12;
    font-size: 1.1em;
}

.message-time {
    color: #95a5a6;
    font-size: 0.85em;
}

.message-text {
    color: #ecf0f1;
    line-height: 1.5;
    white-space: pre-wrap;
    word-wrap: break-word;
}

footer {
    text-align: center;
    border-top: 3px solid #f39c12;
    padding-top: 20px;
    margin-top: 30px;
}

.quote {
    font-size: 1.2em;
    color: #3498db;
    font-style: italic;
    margin-bottom: 10px;
}

.footer-note {
    color: #95a5a6;
    font-size: 0.9em;
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.9em;
    }

    h2 {
        font-size: 1.1em;
    }

    .container {
        padding: 12px;
    }

    .info-box,
    .rsvp-section,
    .trash-talk-section {
        padding: 12px;
    }

    .message-board {
        max-height: 400px;
    }
}
