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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #FFFFFF;
    color: #161926;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Logo Section */
.logo-section {
    margin-bottom: 3rem;
}

.logo-image {
    max-width: 400px;
    height: auto;
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.1rem;
    font-weight: 500;
    background: linear-gradient(
        90deg,
        #F4AF0D,
        #161926,
        #F4AF0D,
        #161926,
        #F4AF0D
    );
    background-size: 300% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: flowingGradient 4s linear infinite;
}

@keyframes flowingGradient {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}

/* Main Content */
.main-content {
    background: #161926;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(22, 25, 38, 0.2);
    margin-bottom: 2rem;
    border: 3px solid #F4AF0D;
    margin-left: -20px;
    margin-right: -20px;
}

.main-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.highlight {
    color: #F4AF0D;
    font-weight: bold;
}

.main-content p {
    font-size: 1.0rem;
    color: #FFFFFF;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer Fixat */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #161926;
    color: #F4AF0D;
    padding: 1rem;
    text-align: center;
    border-top: 3px solid #F6BF2D;
    font-size: 0.9rem;
    z-index: 1000;
}

/* Footer Divider */
.footer-divider {
    width: 780px;
    height: 3px;
    background: linear-gradient(90deg, #F4AF0D, #F6BF2D, #F4AF0D);
    margin: 0.8rem auto;
    border-radius: 2px;
}

/* Copyright Text */
.copyright {
    font-size: 0.8rem;
    color: #F6BF2D;
    opacity: 0.9;
    margin-top: 0.5rem;
}

/* Responsive */
/* Responsive Fixes */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .logo-image {
        max-width: 400px !important;
    }
    
    .main-content {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 2rem 1rem !important;
        border-radius: 15px !important;
    }
    
    .main-content h2 {
        font-size: 0.9rem !important;
        line-height: 1.1;
    }
    
    .main-content p {
        font-size: 1rem !important;
        line-height: 1.2;
    }
    
    .tagline {
        font-size: 1rem !important;
    }
    
    .footer {
        padding: 0.8rem !important;
        font-size: 0.8rem !important;
    }
    
    .footer-divider {
        width: 200px !important;
        margin: 0.5rem auto !important;
    }
    
    .copyright {
        font-size: 0.7rem !important;
    }
}

@media (max-width: 480px) {
    .logo-image {
        max-width: 250px !important;
    }
    
    .main-content h2 {
        font-size: 1.1rem !important;
    }
    
    .main-content p {
        font-size: 0.8rem !important;
    }
    
    .tagline {
        font-size: 0.8rem !important;
    }
    
    body {
        padding: 10px !important;
    }
}