* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f5f5f5;
}

/* Top Links */
.top-links {
    background-color: #f8f8f8;
    padding: 8px 0;
    text-align: center;
}

.top-links a {
    color: #666;
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
}

.top-links a:hover {
    color: #333;
}

/* Announcement Bar */
.top-announcement {
    background-color: #e6f3ff;
    padding: 10px;
    text-align: center;
    color: #1a365d;
}

/* Header */
.site-header {
    background-color: white;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-center {
    text-align: center;
}

.logo-center img {
    height: 60px;
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-card {
    display: flex;
    background: white;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    align-items: center;
    transition: transform 0.2s ease;
}

.event-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.event-image {
    width: 100px;
    height: 100px;
    margin-right: 20px;
    flex-shrink: 0;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-details {
    flex-grow: 1;
}

.venue {
    color: #666;
    font-size: 14px;
    margin-bottom: 4px;
}

h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 8px;
}

.datetime {
    font-size: 16px;
    color: #444;
    margin-bottom: 4px;
}

.venue-location {
    color: #666;
    font-size: 14px;
}

.price-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
}

.original-price {
    color: #666;
    font-size: 14px;
    text-decoration: line-through;
}

.free-text {
    color: #1a365d;
    font-size: 14px;
    font-weight: bold;
}

.buy-button {
    margin-left: auto;
    padding-left: 20px;
}

button {
    background-color: #1a365d;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

button:hover {
    background-color: #2c4c7c;
}

/* Footer */
.site-footer {
    background-color: #1a365d;
    color: white;
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
}

.footer-desc {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-logo {
    height: 40px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.footer-column a:hover {
    text-decoration: underline;
}

.footer-right {
    text-align: right;
}

.btn-green {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    margin: 20px 0;
    font-weight: bold;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    color: white;
    margin-left: 15px;
    font-size: 20px;
    text-decoration: none;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Promo Code Section */
.promo-section {
    background-color: #1a365d;
    margin-bottom: 20px;
    padding: 20px;
    color: white;
}

.promo-content {
    text-align: center;
}

.promo-code {
    margin-bottom: 12px;
}

.promo-label {
    font-size: 16px;
    font-weight: bold;
    margin-right: 10px;
}

.code {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    font-family: 'Courier New', monospace;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
}

.promo-status {
    font-size: 14px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.promo-status i {
    font-size: 16px;
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    margin-bottom: 30px;
    padding: 15px;
}

.disclaimer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #856404;
    font-weight: bold;
    text-align: center;
}

.disclaimer-content i {
    font-size: 20px;
}

/* Mobile Styles - Keep layout consistent with desktop */
@media (max-width: 768px) {
    .top-links {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-right {
        text-align: center;
    }

    .social-icons a {
        margin: 0 8px;
    }

    /* Keep event card layout the same as desktop */
    .event-card {
        flex-direction: row; /* Keep horizontal layout */
        padding: 15px;
    }

    .event-image {
        margin-right: 15px;
        margin-bottom: 0;
    }

    .buy-button {
        margin-left: auto;
        margin-top: 0;
        padding-left: 15px;
    }

    .container {
        padding: 0 15px;
    }

    .code {
        display: block;
        margin-top: 8px;
    }

    .disclaimer-content {
        flex-direction: column;
        gap: 8px;
    }
} 