body {
    background-image: url('/images/ReadyPlzBackGroundGraphic.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(91, 61, 119, 0.7);
    z-index: -1;
}

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

header {
    padding: 1rem 0;
    background-color: transparent;
    box-shadow: none;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #07f7af;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #07f7af;
    font-weight: 500;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.nav-links a:hover {
    color: #05d89c;
}

.btn-logout {
    background: none;
    border: none;
    color: #07f7af;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    font-size: 1rem;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-logout:hover {
    color: #ff6b6b;
}

.username {
    color: #07f7af;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.welcome-message {
    color: #07f7af;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero {
    text-align: center;
    padding: 4rem 0;
    background-color: transparent;
}

.hero h1 {
    font-size: 2.5rem;
    color: #07f7af;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    color: #07f7af;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
    margin-top: 2rem;
}

.btn.primary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: #07f7af;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #07f7af;
    backdrop-filter: blur(5px);
}

.btn.primary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #05d89c;
    border-color: #05d89c;
}

.features {
    padding: 4rem 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    padding: 2rem;
    background-color: transparent;
    border-radius: 8px;
    box-shadow: none;
    text-align: center;
}

.feature-card h3 {
    color: #07f7af;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.feature-card p {
    color: #07f7af;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

footer {
    text-align: center;
    padding: 2rem 0;
    background-color: transparent;
    margin-top: 4rem;
}

footer p {
    color: #07f7af;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
} 