.main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 90px 20px 20px 20px;
    position: relative;
    z-index: 1;
    background: transparent;
}

.container {
    max-width: 800px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.logo {
    margin-bottom: 30px;
    animation: fadeInDown 1s ease-out;
}

.logo h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.tagline {
    font-size: 1.2rem;
    color: #a5d6a7;
    font-weight: 300;
    letter-spacing: 1px;
    margin-top: 10px;
}

.mainContent {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.3s both;
    position: relative;
    z-index: 2;
    width: 100%;
    color: #ffffff;
}

.newsTicker {
    width: 100%;
    margin: 10px auto 20px auto;
    max-width: 900px;
    height: 40px;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #1b5e20 0%, #2e7d32 50%, #1b5e20 100%);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.newsTickerInner {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 14px;
    gap: 12px;
}

.newsTickerLabel {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: #ffeb3b;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.25);
}

.newsTickerTrack {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
}

.newsTickerLink {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    width: 100%;
    gap: 12px;
}

.newsTickerText {
    display: inline-block;
    color: #e8f5e9;
    font-size: 0.9rem;
    padding-left: 100%;
    animation: news-marquee 25s linear infinite;
}

@keyframes news-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.comingSoon {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: #c8e6c9;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #e8f5e9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.authButtons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.loginBtn,
.registerBtn {
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: none;
    color: #ffffff;
}

.loginBtn {
    background: linear-gradient(135deg, #4a7c59 0%, #2c5530 100%);
}

.loginBtn:hover {
    background: linear-gradient(135deg, #5a8c69 0%, #3c6540 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.registerBtn {
    background: linear-gradient(135deg, #2c5530 0%, #1a3a1e 100%);
}

.registerBtn:hover {
    background: linear-gradient(135deg, #388e3c 0%, #2c5530 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.blogBanner {
    display: block;
    margin: 40px auto 0;
    max-width: 500px;
    background: linear-gradient(135deg, rgba(200, 230, 201, 0.2) 0%, rgba(165, 214, 167, 0.15) 100%);
    border: 2px solid rgba(200, 230, 201, 0.3);
    border-radius: 15px;
    padding: 20px 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.blogBanner:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(200, 230, 201, 0.5);
    background: linear-gradient(135deg, rgba(200, 230, 201, 0.3) 0%, rgba(165, 214, 167, 0.25) 100%);
}

.blogBannerContent {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
}

.blogBannerIcon {
    font-size: 2rem;
    line-height: 1;
}

.blogBannerText {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.blogBannerTitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: #c8e6c9;
    display: block;
    margin-bottom: 5px;
}

.blogBannerSubtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    display: block;
}

.blogBannerArrow {
    font-size: 1.5rem;
    color: #c8e6c9;
    transition: transform 0.3s ease;
}

.blogBanner:hover .blogBannerArrow {
    transform: translateX(5px);
}

.socialLinks {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.socialLinks a {
    color: #a5d6a7;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px;
}

.socialLinks a:hover {
    color: #66bb6a;
    transform: translateY(-3px);
}

.footer {
    margin-top: 50px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer p {
    margin: 5px 0;
}

@media (max-width: 768px) {
    .main {
        padding: 80px 20px 20px 20px;
        min-height: calc(100vh - 60px);
    }
    
    .logo {
        display: none; /* Hide logo on mobile since it's in navigation */
    }
    
    .logo h1 {
        font-size: 2.5rem;
        color: #ffffff !important;
    }

    .comingSoon {
        font-size: 2rem;
        color: #c8e6c9 !important;
    }

    .mainContent {
        padding: 40px 20px;
        margin-top: 20px;
        background: rgba(255, 255, 255, 0.1) !important;
        color: #ffffff !important;
    }
    
    .description {
        color: #e8f5e9 !important;
    }
    
    .authButtons {
        gap: 15px;
    }
    
    .loginBtn,
    .registerBtn {
        padding: 10px 25px;
        font-size: 0.9rem;
        color: #ffffff !important;
    }
}

@media (max-width: 480px) {
    .main {
        padding: 80px 15px 15px 15px;
        min-height: calc(100vh - 60px);
    }
    
    .logo {
        display: none; /* Hide logo on mobile since it's in navigation */
    }
    
    .logo h1 {
        font-size: 2rem;
        color: #ffffff !important;
    }
    
    .tagline {
        font-size: 1rem;
        color: #a5d6a7 !important;
    }
    
    .comingSoon {
        font-size: 1.75rem;
        color: #c8e6c9 !important;
    }
    
    .mainContent {
        padding: 30px 15px;
        margin-top: 20px;
        background: rgba(255, 255, 255, 0.1) !important;
        color: #ffffff !important;
    }
    
    .description {
        color: #e8f5e9 !important;
    }
    
    .authButtons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .loginBtn,
    .registerBtn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.95rem;
        color: #ffffff !important;
    }
}

