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

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

/* Top Bar */
.top-bar {
    background: #1a1a1a;
    color: white;
    padding: 10px 0;
    font-size: 13px;
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.market-status {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 12px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #3e9c35;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.stock-ticker {
    color: #3e9c35;
    font-weight: 600;
}

.contact-bar {
    display: flex;
    gap: 25px;
}

.contact-bar a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-bar a:hover {
    color: #3e9c35;
}

/* Under Construction Banner */
.construction-banner {
    background: linear-gradient(90deg, #3e9c35 0%, #4169e1 100%);
    color: white;
    padding: 10px 20px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.construction-icon {
    font-size: 16px;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.construction-text {
    color: white;
    letter-spacing: 0.5px;
}

/* Main Container */
.main-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: 60px 20px;
}

.content-wrapper {
    text-align: center;
    max-width: 900px;
    width: 100%;
}

/* Logo Section */
.logo-section {
    margin-bottom: 40px;
}

.logo-container {
    /* background: #1a1a1a; */
    /* border-radius: 12px; */
    /* padding: 30px; */
    display: inline-block;
    /* margin-bottom: 35px; */
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
    width: 70%;
    /* border: 1px solid #ccc; */
    vertical-align: middle;
}

.logo-img, .logo-video {
    /* height: 80px; */
    width: 99%;
    display: block;
}

/* Company Title */
.company-title {
    font-size: 48px;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.company-title .highlight {
    color: #3e9c35;
    font-weight: 400;
}

.trading-badge {
    display: inline-block;
    background: #f0f0f0;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
}

.trading-badge .ticker {
    color: #4169e1;
    font-weight: 600;
}

.tagline {
    font-size: 20px;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.5;
}

/* CTA Buttons */
.cta-section {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn {
    padding: 18px 45px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    display: inline-block;
}

.btn-primary {
    background: #3e9c35;
    color: white;
    box-shadow: 0 2px 10px rgba(62, 156, 53, 0.2);
}

.btn-primary:hover {
    background: #2d7a26;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(62, 156, 53, 0.3);
}

.btn-secondary {
    background: white;
    color: #333;
    border: 2px solid #e0e0e0;
}

.btn-secondary:hover {
    border-color: #4169e1;
    color: #4169e1;
    transform: translateY(-2px);
}

/* Key Metrics */
.metrics-container {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.metric {
    text-align: center;
    position: relative;
}

.metric:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 1px;
    background: #e0e0e0;
}

.metric-value {
    font-size: 36px;
    font-weight: 600;
    color: #3e9c35;
    margin-bottom: 10px;
}

.metric-label {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Quick Links */
.quick-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.quick-links a {
    color: #666;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
    position: relative;
}

.quick-links a:hover {
    color: #3e9c35;
}

.quick-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3e9c35;
    transition: width 0.3s;
}

.quick-links a:hover::after {
    width: 100%;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 30px 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.footer-company {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    height: 25px;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #3e9c35;
}

/* Responsive Design */
@media (max-width: 768px) {
    .company-title {
        font-size: 36px;
    }

    .cta-section {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .metric::after {
        display: none;
    }

    .metric:nth-child(2)::after {
        display: none;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .quick-links {
        flex-wrap: wrap;
        gap: 20px;
    }

    .contact-bar {
        display: none;
    }
}

@media (max-width: 480px) {
    .company-title {
        font-size: 28px;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .logo-container {
        padding: 20px;
    }

    .logo-img, .logo-video {
        height: 60px;
    }

    .metric-value {
        font-size: 32px;
    }

    .tagline {
        font-size: 18px;
    }
}
