/* Global CSS - Universal styles, body, and base layout */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #000;
}

/* Main content area */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.instant-access {
    background: #FFD700;
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 30px;
    display: inline-block;
}

.main-title {
    font-size: 48px;
    font-weight: 300;
    color: #000;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 48px;
    line-height: 1.4;
}

/* Copyright Footer */
.copyright-footer {
    margin-top: auto;
    padding: 20px;
    text-align: center;
    font-size: 12px;
    color: #666;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.copyright-footer a {
    color: #007bff;
    text-decoration: none;
}

.copyright-footer a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Mobile Responsive - Global */
@media (max-width: 768px) {
    .main-content {
        padding: 60px 15px 30px;
    }

    .main-title {
        font-size: 36px;
    }
    
    .copyright-footer {
        font-size: 11px;
        padding: 15px;
    }
}