:root {
    --primary-color: #8B0000;
    --secondary-color: #2C1810;
    --accent-color: #D4AF37;
    --text-color: #FFFFFF;
    --background-color: #1A1A1A;
    --card-background: #2D2D2D;
    --heading-font: 'MedievalSharp', cursive;
    --body-font: 'Crimson Text', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

body {
    font-family: var(--body-font);
    background: linear-gradient(-45deg, #1a1a1a, #2c1810, #8b0000, #2c1810);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
    color: var(--text-color);
    line-height: 1.8;
    min-height: 100vh;
    letter-spacing: 0.5px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    /* background-color: rgba(0, 0, 0, 0.7); */
    min-height: 100vh;
    backdrop-filter: blur(10px);
}

header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-bottom: 2px solid var(--accent-color);
}

h1, h2 {
    font-family: var(--heading-font);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: normal;
}

h1 {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: pulse 2s infinite;
}

h2 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin: 1.5rem 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.content p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.highlight {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 600;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

.countdown-item {
    background-color: var(--card-background);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    min-width: 120px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
}

.countdown-item span:first-child {
    font-family: var(--heading-font);
    font-size: 3rem;
    font-weight: normal;
    color: var(--accent-color);
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.countdown-item span:last-child {
    font-family: var(--body-font);
    font-size: 1.1rem;
    color: var(--text-color);
    text-transform: uppercase;
    font-style: italic;
}

/* Contact Page Styles */
.contact-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.contact-info {
    background-color: var(--card-background);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-5px);
}

.contact-item {
    display: flex;
    align-items: center;
    margin: 1rem 0;
}

.contact-item i {
    color: var(--accent-color);
    margin-right: 1rem;
    font-size: 1.5rem;
}

.contact-form {
    background-color: var(--card-background);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--accent-color);
    border-radius: 5px;
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: var(--body-font);
    font-size: 1.1rem;
    font-style: italic;
}

.submit-button {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    font-family: var(--heading-font);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.submit-button:hover {
    background-color: #E6C200;
    transform: scale(1.05);
}

/* Legal Pages Styles */
.legal-page {
    /* background-color: var(--card-background); */
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    font-family: var(--body-font);
    font-size: 1.1rem;
    line-height: 1.8;
}

.legal-page:hover {
    transform: translateY(-5px);
}

.legal-page section {
    margin-bottom: 2rem;
}

.legal-page ul {
    list-style-position: inside;
    margin-left: 1rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
}

.legal-page h2 {
    font-family: var(--heading-font);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* Footer Styles */
footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--accent-color);
}

footer nav {
    margin-bottom: 1rem;
}

footer a {
    color: var(--accent-color);
    text-decoration: none;
    margin: 0 1rem;
    transition: all 0.3s;
    font-family: var(--body-font);
    font-size: 1.1rem;
    font-style: italic;
}

footer a:hover {
    color: #E6C200;
    transform: scale(1.1);
}

.back-button {
    display: inline-block;
    color: var(--accent-color);
    text-decoration: none;
    margin-top: 1rem;
    transition: all 0.3s;
}

.back-button:hover {
    color: #E6C200;
    transform: scale(1.1);
}

.close-button {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 1rem;
    transition: all 0.3s;
    font-family: var(--heading-font);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.close-button:hover {
    background-color: #000;
    transform: scale(1.05);
}

.footer-contact {
    margin: 1rem 0;
}

.footer-contact a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-contact a:hover {
    color: #E6C200;
    text-decoration: underline;
}

.contact-item a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s;
}

.contact-item a:hover {
    color: #E6C200;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-page {
        grid-template-columns: 1fr;
    }
    
    .countdown {
        flex-wrap: wrap;
    }
    
    .countdown-item {
        min-width: 100px;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .content p {
        font-size: 1.1rem;
    }
    
    .highlight {
        font-size: 1.2rem;
    }
    
    .countdown-item span:first-child {
        font-size: 2.5rem;
    }
    
    .countdown-item span:last-child {
        font-size: 1rem;
    }
    
    body {
        font-size: 1rem;
    }
} 