@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');

:root {
    --background-color: #030711;
    --accent-color: hsl(262.33deg 57.33% 55.88% / 8%);
    --text-color: #F0F0F0;
    --highlight-color: hsl(262.33, 85%, 65%);
    --container-bg: #080a18;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    overflow: hidden;
    text-align: center;
    position: relative;
}

body::before { /* Subtle background pattern/texture */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(138, 43, 226, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: -1;
}

.container {
    padding: 60px 80px;
    border-radius: 20px;
    background-color: var(--container-bg);
    border: 1px solid var(--accent-color);
    box-shadow: none;
    backdrop-filter: blur(12px);
    animation: fadeInContainer 2s ease-out forwards;
    transform: translateY(20px);
    opacity: 0;
}

@keyframes fadeInContainer {
    to { opacity: 1; transform: translateY(0); }
}

h1 {
    font-family: 'Righteous', sans-serif;
    font-size: 4em;
    color: var(--highlight-color);
    text-shadow: none;
    margin-bottom: 25px;
    animation: fadeInText 1.5s ease-out forwards 0.5s;
    opacity: 0;
}

@keyframes fadeInText {
    to { opacity: 1; }
}

.sub-message {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3em;
    color: var(--text-color);
    margin-top: 20px;
    margin-bottom: 30px;
    animation: fadeInText 1.5s ease-out forwards 1s;
    opacity: 0;
}

.discord-button {
    display: inline-block;
    margin-top: 0;
    padding: 14px 28px;
    background-color: var(--highlight-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1em;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: none;
    animation: fadeInText 1.5s ease-out forwards 1.5s;
    opacity: 0;
}

.discord-button:hover {
    background-color: hsl(262.33, 90%, 70%);
    transform: translateY(-2px);
    box-shadow: none;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: #9333ea; /* Brighter purple */
    color: white;
    padding: 18px 30px;
    font-size: 1.2em;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: none;
}

.dropbtn:hover {
    background-color: #7c24d1;
    transform: translateY(-3px);
    box-shadow: none;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #2a2a2a;
    min-width: 350px;
    box-shadow: none;
    z-index: 1;
    border-radius: 10px;
    padding: 25px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    margin-top: 10px;
    opacity: 0;
    transition: all 0.5s ease-out;
}

.dropdown-content.show {
    display: block;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content h2 {
    color: #9333ea;
    margin-top: 0;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.dropdown-content p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 12px;
}

.dropdown-content p:last-child {
    margin-bottom: 0;
}

/* Animations */
@keyframes glowEffect {
    /* Removed or redefined if necessary */
}

@keyframes slideIn {
    /* Removed or redefined if necessary */
}

/* Ensure new animations are defined or existing ones are adapted */

.logo {
    width: 60px; /* Reduced logo size */
    height: auto;
    margin-bottom: 5px;
}

/* Background elements */
.background-element {
    position: absolute;
    opacity: 0.7;
    z-index: -1;
}

.smoke {
    top: 10%;
    left: 5%;
    width: 20vw; /* Responsive width */
    height: auto;
    content: url('smoke.png');
}

.camper {
    bottom: 0;
    left: 0;
    width: 15vw; /* Responsive width */
    height: auto;
    content: url('cake.png');
}

.torii {
    bottom: 0;
    right: 0;
    width: 25vw; /* Responsive width */
    height: auto;
    content: url('asianarch.png');
}

.don-text {
    top: 15%;
    right: 10%;
    width: 12vw; /* Responsive width */
    height: auto;
    content: url('don.png');
} 