/* CnBees Form Page Styles */

/* CSS Custom Properties for Brand Colors */
:root {
    --cnbees-yellow: #F4B942;
    --cnbees-dark: #2c2c2c;
    --cnbees-light-gray: #f8f9fa;
    --cnbees-border: #e0e0e0;
    --cnbees-text: #333333;
    --cnbees-error: #dc3545;
    --cnbees-success: #28a745;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--cnbees-text);
    background-color: var(--cnbees-light-gray);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo-container {
    text-align: center;
}

.logo {
    height: 60px;
    width: auto;
}

/* Login Section Styles */
.login-section {
    padding: 10px 0;
    background: white;
}

.login-card {
    max-width: 400px;
    margin: 0 auto;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Registration Section Styles */
.registration-section {
    padding: 60px 0;
    background: var(--cnbees-light-gray);
}

.registration-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.registration-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--cnbees-text);
}

.subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #666;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.form-row.full-width {
    flex-direction: column;
}

/* Role Selection Styles */
.role-section {
    margin-bottom: 30px;
}

.role-section label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--cnbees-text);
}

/* RIB Section Styles */
.rib-section {
    background: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid var(--cnbees-border);
}

.rib-section h3 {
    margin-bottom: 20px;
    color: var(--cnbees-text);
    font-size: 1.2rem;
}

.rib-question {
    margin-bottom: 20px;
}

.rib-question > label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--cnbees-text);
}

.radio-group {
    display: flex;
    gap: 20px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: normal;
}

.radio-option input[type="radio"] {
    width: auto;
    margin: 0;
}

.radio-option span {
    font-size: 16px;
    color: var(--cnbees-text);
}

.rib-inputs {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--cnbees-border);
}

.bte-link {
    margin-top: 20px;
    padding: 20px;
    background-color: var(--cnbees-light-gray);
    border-radius: 6px;
    text-align: center;
}

.bte-link p {
    margin-bottom: 15px;
    color: var(--cnbees-text);
}

.bte-bank-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.bte-logo {
    height: 60px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

/* Responsive adjustments for bte-logo */
@media (max-width: 768px) {
    .bte-logo {
        height: 45px;
    }
}

@media (max-width: 480px) {
    .bte-logo {
        height: 35px;
    }
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #5a6268;
    color: white;
    text-decoration: none;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--cnbees-border);
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background-color: white;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
select:focus {
    outline: none;
    border-color: var(--cnbees-yellow);
    box-shadow: 0 0 0 2px rgba(244, 185, 66, 0.2);
}

select:disabled {
    background-color: #f8f9fa;
    color: #6c757d;
    cursor: not-allowed;
}

select option {
    padding: 8px;
}

/* Button Styles */
.btn-primary {
    background-color: var(--cnbees-yellow);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.btn-primary:hover {
    background-color: #e6a73a;
}

/* Message Styles */
.error-message {
    background-color: #f8d7da;
    color: var(--cnbees-error);
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
}

.success-message {
    background-color: #d4edda;
    color: var(--cnbees-success);
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
}

/* Field-level error messages */
.field-error {
    color: var(--cnbees-error) !important;
    font-size: 12px !important;
    margin-top: 5px !important;
    margin-bottom: 10px !important;
    display: block !important;
    width: 100% !important;
    clear: both;
}

.row-error {
    color: var(--cnbees-error) !important;
    font-size: 12px !important;
    margin-top: 5px !important;
    margin-bottom: 15px !important;
    display: block !important;
    width: 100% !important;
    clear: both;
    text-align: left;
}

/* Footer Styles */
.footer {
    background-color: var(--cnbees-dark);
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo .logo {
    height: 50px;
}

.footer-text p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.footer-link:hover {
    color: var(--cnbees-yellow);
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .rib-section {
        padding: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .registration-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .login-card {
        padding: 20px;
    }
    
    .registration-section {
        padding: 40px 0;
    }
}

/* Platform Status Section */
.platform-status {
    background: rgba(244, 185, 66, 0.08);
    border: 1px solid rgba(244, 185, 66, 0.2);
    border-radius: 8px;
    padding: 15px 20px;
    margin: 20px 0 0 0;
    color: var(--cnbees-dark);
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.status-icon {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.status-content h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--cnbees-dark);
}

.status-content p {
    margin: 0 0 20px 0;
    line-height: 1.6;
    opacity: 0.7;
    font-size: 1rem;
    color: var(--cnbees-dark);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    opacity: 0.75;
    color: var(--cnbees-dark);
}

.benefit-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Responsive adjustments for platform status */
@media (max-width: 768px) {
    .platform-status {
        padding: 12px 15px;
        margin: 15px 0 0 0;
    }
    
    .status-icon {
        font-size: 1.3rem;
    }
    
    .status-content h3 {
        font-size: 1rem;
    }
}

/* Header section adjustments */
.header {
    padding-bottom: 40px;
}

.logo-container {
    margin-bottom: 20px;
}
.registration-content {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Success message enhancement */
.success-message {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    animation: slideInDown 0.5s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Enhanced Footer Styles - Matching the design */
.footer {
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h3 {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: capitalize;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .logo {
    max-width: 150px;
    height: auto;
}

.footer-text {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-contact p {
    margin: 12px 0;
    line-height: 1.8;
    color: #cccccc;
    font-size: 0.95rem;
}

.footer-contact strong {
    color: #ffffff;
    display: inline-block;
    margin-bottom: 5px;
}

.footer-contact a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-contact a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.social-media {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.social-link:hover {
    background-color: #FFD700;
    color: #2d2d2d;
    transform: translateY(-3px);
    border-color: #FFD700;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.social-link svg {
    width: 22px;
    height: 22px;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 35px 0 25px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 10px;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-bottom-left p {
    margin: 0;
    color: #cccccc;
    font-size: 0.9rem;
}

.agreement-number {
    font-size: 0.9rem;
    color: #FFD700 !important;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: #FFD700;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FFD700;
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-section:first-child {
        grid-column: 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-bottom-left {
        align-items: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .social-media {
        justify-content: flex-start;
    }
    
    .footer-section h3 {
        font-size: 1.15rem;
    }
    
    .footer-logo .logo {
        max-width: 120px;
    }
}


/* Enhanced Content Sections */
.section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    margin: 40px 0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.section:nth-child(even) {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.section h2 {
    color: #2d2d2d;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 2px;
}

.section p {
    color: #555555;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Header CTA Enhancement */
.header-cta {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
}

.header-cta button {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #2d2d2d;
    border: none;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-cta button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
}

.header-cta button:active {
    transform: translateY(-1px);
}

/* Header Content Enhancement */
.header h1 {
    color: #2d2d2d;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin: 30px 0 20px;
    line-height: 1.3;
}

.header > p {
    color: #555555;
    font-size: 1.15rem;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 20px;
    padding: 0 20px;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .section {
        padding: 40px 15px;
        margin: 25px 0;
    }
    
    .section h2 {
        font-size: 1.8rem;
    }
    
    .section p {
        font-size: 1rem;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .header > p {
        font-size: 1rem;
    }
    
    .header-cta button {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 30px 10px;
        margin: 20px 0;
    }
    
    .section h2 {
        font-size: 1.5rem;
    }
    
    .section p {
        font-size: 0.95rem;
    }
    
    .header h1 {
        font-size: 1.6rem;
    }
    
    .header > p {
        font-size: 0.95rem;
    }
    
    .header-cta button {
        padding: 12px 25px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px;
    }
}


/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ============================================ */

/* Base Container Responsiveness */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
}

/* Header Responsiveness */
.header {
    padding: 20px 0;
}

.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    max-width: 200px;
    height: auto;
}

@media (max-width: 768px) {
    .logo {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 120px;
    }
}

/* Platform Status Responsiveness */
.platform-status {
    text-align: center;
    padding: 20px;
    margin: 20px 0;
}

.platform-status h2 {
    font-size: 1.8rem;
    margin: 10px 0;
}

@media (max-width: 768px) {
    .platform-status {
        padding: 15px;
    }
    
    .platform-status h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .platform-status {
        padding: 10px;
    }
    
    .platform-status h2 {
        font-size: 1.2rem;
    }
    
    .status-icon {
        font-size: 2rem;
    }
}

/* Login Section Responsiveness */
.login-section {
    padding: 40px 0;
}

.login-card {
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .login-section {
        padding: 30px 0;
    }
    
    .login-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .login-section {
        padding: 20px 0;
    }
    
    .login-card {
        padding: 20px 15px;
    }
}

/* Registration Section Responsiveness */
.registration-section {
    padding: 60px 0;
}

.registration-content {
    max-width: 800px;
    margin: 0 auto;
}

.registration-content h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 15px;
}

.subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #666;
}

@media (max-width: 768px) {
    .registration-section {
        padding: 40px 0;
    }
    
    .registration-content h2 {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .registration-section {
        padding: 30px 0;
    }
    
    .registration-content h2 {
        font-size: 1.5rem;
    }
    
    .subtitle {
        font-size: 0.95rem;
    }
}

/* Form Responsiveness */
.registration-form,
.login-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.form-row.full-width {
    grid-template-columns: 1fr;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.form-group {
    margin-bottom: 20px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select,
textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

@media (max-width: 480px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    select,
    textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
}

/* Button Responsiveness */
.btn-primary,
.btn-secondary {
    width: 100%;
    padding: 14px 30px;
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #2d2d2d;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

@media (max-width: 768px) {
    .btn-primary,
    .btn-secondary {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

/* RIB Section Responsiveness */
.rib-section {
    margin: 30px 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
}

.rib-section h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #2d2d2d;
}

@media (max-width: 768px) {
    .rib-section {
        padding: 20px;
    }
    
    .rib-section h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .rib-section {
        padding: 15px;
    }
    
    .rib-section h3 {
        font-size: 1.1rem;
    }
}

/* Radio Group Responsiveness */
.radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

@media (max-width: 480px) {
    .radio-group {
        flex-direction: column;
        gap: 12px;
    }
}

/* BTE Bank Info Responsiveness */
.bte-bank-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .bte-bank-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .bte-bank-info {
        align-items: center;
        text-align: center;
    }
    
    .bte-bank-info .btn-secondary {
        width: 100%;
    }
}

/* Role Section Responsiveness */
.role-section {
    margin: 25px 0;
}

.role-section label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #2d2d2d;
}

@media (max-width: 480px) {
    .role-section label {
        font-size: 0.95rem;
    }
}

/* Error and Success Messages Responsiveness */
.error-message,
.success-message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 1rem;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

@media (max-width: 480px) {
    .error-message,
    .success-message {
        padding: 12px;
        font-size: 0.9rem;
    }
}

/* Ensure all images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Prevent horizontal scroll */
body {
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

/* Touch-friendly spacing for mobile */
@media (max-width: 768px) {
    button,
    a,
    input,
    select {
        min-height: 44px; /* iOS recommended touch target size */
    }
}


/* ============================================
   ENHANCED PLATFORM STATUS MESSAGE
   ============================================ */

.platform-status {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFEDD5 100%);
    border: 2px solid #FFD700;
    border-radius: 12px;
    padding: 20px 30px;
    margin: 20px auto;
    max-width: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.15);
}

.status-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.status-content {
    flex: 1;
}

.status-content h2 {
    color: #2d2d2d;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.status-subtitle {
    display: none; /* Hide subtitle for compact design */
}

/* Responsive Platform Status */
@media (max-width: 768px) {
    .platform-status {
        padding: 18px 25px;
        margin: 15px auto;
        gap: 12px;
    }
    
    .status-icon {
        font-size: 2rem;
    }
    
    .status-content h2 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .platform-status {
        padding: 15px 20px;
        margin: 15px auto;
        border-radius: 10px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .status-icon {
        font-size: 1.8rem;
    }
    
    .status-content h2 {
        font-size: 1rem;
    }
}


/* ============================================
   HEADER REDESIGN - DARK THEME
   ============================================ */

.header {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 60px 0;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.header .logo-container {
    margin-bottom: 0px;
    display: inline-block; 
    border-radius: 12px;

}

.header .logo {
    max-width: 200px;
    height: auto;
    filter: brightness(1.0) drop-shadow(0 0 30px rgba(255, 255, 255, 255));
}

.header h1 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 30px 0 20px;
    line-height: 1.3;
    white-space: nowrap;
}

.header-description {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0 auto 30px;
    max-width: 800px;
}

.header-cta button {
    background: #FFD700;
    color: #2d2d2d;
    border: none;
    padding: 14px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.header-cta button:hover {
    background: #FFA500;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

/* Responsive Header */
@media (max-width: 768px) {
    .header {
        padding: 50px 0;
        min-height: 350px;
    }
    
    .header h1 {
        font-size: 1.5rem;
        white-space: normal;
    }
    
    .header-description {
        font-size: 1rem;
    }
    
    .header .logo {
        max-width: 150px;
        filter: brightness(1.1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
    }
}

@media (max-width: 480px) {
    .header {
        padding: 40px 0;
        min-height: 300px;
    }
    
    .header h1 {
        font-size: 1.2rem;
        white-space: normal;
    }
    
    .header-description {
        font-size: 0.95rem;
    }
    
    .header .logo {
        max-width: 120px;
        filter: brightness(1.1) drop-shadow(0 0 6px rgba(255, 255, 255, 0.8));
    }
    
    .header-cta button {
        padding: 12px 25px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px;
    }
}

/* ============================================
   LOGIN TOGGLE BUTTON - FIXED TOP RIGHT
   ============================================ */

.login-toggle-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #FFD700;
    color: #2d2d2d;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.login-toggle-btn:hover {
    background: #FFA500;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.login-toggle-btn:active {
    transform: translateY(0);
}

.login-toggle-btn.active {
    background: #2d2d2d;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.login-icon {
    display: none;
}

/* Responsive Login Toggle Button */
@media (max-width: 768px) {
    .login-toggle-btn {
        top: 15px;
        right: 15px;
        padding: 8px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .login-toggle-btn {
        top: 10px;
        right: 10px;
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* Remove old header-top styles */
.header-top {
    display: none;
}


/* ============================================
   ACHIEVEMENT SECTION
   ============================================ */

.achievement-section {
    padding: 50px 1px;
    background: transparent;
}

.achievement-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 16px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
}

.achievement-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.achievement-icon {
    font-size: 3.5rem;
    flex-shrink: 0;
    animation: achievementPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.4));
}

@keyframes achievementPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.achievement-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.achievement-text {
    color: #ffffff;
    font-size: 1.25rem;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.achievement-text strong {
    color: #FFD700;
    font-weight: 700;
}

.achievement-dots {
    color: #FFD700;
    font-weight: 700;
    letter-spacing: 2px;
}

.achievement-badge {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 12px;
    padding: 16px 24px;
    min-width: 120px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.badge-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #2d2d2d;
    font-weight: 600;
    margin-bottom: 4px;
}

.badge-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: #2d2d2d;
    letter-spacing: 0.5px;
}

/* Achievement Section Responsive */
@media (max-width: 768px) {
    .achievement-section {
        padding: 35px 15px;
    }

    .achievement-card {
        flex-direction: column;
        padding: 30px 25px;
        text-align: center;
        gap: 20px;
    }

    .achievement-icon {
        font-size: 3rem;
    }

    .achievement-text {
        font-size: 1.1rem;
    }

    .achievement-badge {
        min-width: 140px;
        padding: 14px 28px;
    }
}

@media (max-width: 480px) {
    .achievement-section {
        padding: 25px 10px;
    }

    .achievement-card {
        padding: 25px 20px;
        gap: 15px;
    }

    .achievement-icon {
        font-size: 2.5rem;
    }

    .achievement-text {
        font-size: 1rem;
        line-height: 1.6;
    }

    .badge-value {
        font-size: 1.15rem;
    }
}
