<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Reset default margins and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

body {
    background-image: linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.6)),url('background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header styling */
.header {
    display: flex;
    align-items: center; /* Ensures proper vertical alignment */
    justify-content: center;
    gap: 10px; /* Adjusts the spacing between elements */
    width: 100%;
    max-width: 600px;
    padding: 15px 10px; /* Reduce padding slightly */
    margin: 20px auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.college-name, .club-name {
    color: rgb(243, 238, 238);
    margin: 0;
    white-space: nowrap;
    text-align: center; /* Center text in text container */
}

.college-name {
    font-family: 'Marvel', sans-serif;
    font-size: 1.6em; /* Adjusted size */
}

.club-name {
    font-family: 'Roboto', sans-serif;
    font-size: 1em; /* Adjusted size */
}

.text-container {
    flex-grow: 1;
    margin: 20 10px;
    text-align: center;
}

.logo {
    width: 50px; /* Adjusted size for smaller screens */
    height: 40px;
    margin: 20 5px;
}

/* Event logo container */
.event-logo-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    width: 95%; /* Ensure it takes full width on mobile */
}

.event-logo {
    width: 90%; /* Ensure it scales down on mobile */
    max-width: 300px; /* Limit maximum size */
    height: auto;
}

/* Join section */
.join-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 20px; /* Position at the bottom */
    width: 90%;
    max-width: 600px;
    transform: translateY(0); /* Remove vertical translation */
}

.join-event {
    font-family: 'Marvel', sans-serif;
    color: white;
    margin: 10px 0;
    text-align: center;
    font-size: 1.3em; /* Adjusted size */
}

.join-button {
    font-family: 'Marvel', sans-serif;
    font-size: 1.2em; /* Adjusted size */
    color: white;
    background: linear-gradient(45deg, #31084d, #f6a9e1);
    border: none;
    border-radius: 8px;
    padding: 15px 20px; /* Adjusted padding */
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 0 10px rgba(103, 14, 92, 0.8), 0 0 20px rgba(109, 15, 108, 0.6);
    animation: pulse 1.5s infinite;
    transition: background-color 0.3s, transform 0.2s;
    position: relative;
    width: auto; /* Allow auto width for responsive button */
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 10px rgba(24, 148, 231, 0.8), 0 0 20px rgba(18, 77, 171, 0.6);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 20px rgb(30, 101, 178), 0 0 30px rgba(23, 78, 181, 0.8);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 10px rgba(40, 94, 187, 0.8), 0 0 20px rgba(28, 64, 184, 0.6);
        transform: scale(1);
    }
}

.join-button:active {
    background: linear-gradient(45deg, #118852, #8de7ba);
}

.join-button:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.2) 0%, rgba(0, 255, 255, 0) 70%);
    border-radius: 8px;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .college-name {
        font-size: 1.4em;
    }

    .club-name {
        font-size: 0.9em;
    }

    .logo {
        width: 40px;
    }

    .join-event {
        font-size: 1.2em;
    }

    .join-button {
        font-size: 1em;
        padding: 12px 15px;
    }
}

@media (max-width: 400px) {
    .college-name {
        font-size: 1.2em;
    }

    .club-name {
        font-size: 0.8em;
    }
}</pre></body></html>