/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffff66;
    background-color: #111100;
    overflow-x: hidden;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #666600;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Header Styles */
.header {
    background-color: #111100;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(8,8,8,0.3);
}

.header-container {
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    color: #ffff66;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav a:hover, .nav a.active, .mobile-nav a:hover, .mobile-nav a.active {
    color: #ffff66;
    background-color: rgba(102,102,0,0.1);
}

.header-buttons {
    display: flex;
    gap: 1rem;
}

/* Button Styles */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.primary-btn {
    background: linear-gradient(180deg, #666600 0%, #2a2a00 20%, #666600 79.5%, #bbbb00 100%);
    color: #ffff66;
    box-shadow: inset 0 -1px 0 0 #2a2a00, inset 0 1px 0 0 #2a2a00;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102,102,0,0.4);
}

.secondary-btn {
    background: #111100;
    color: #ffff66;
    border: 1px solid #666600;
}

.secondary-btn:hover {
    background: #666600;
    color: #ffff66;
    transform: translateY(-2px);
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.logo{
    height: 50px;
    display: block;
}

.logo img {
    height: 100%;
}

.hero-section {
    text-align: center;
    padding: 3rem 30px;
    background: linear-gradient(135deg, #111100 0%, #111100 100%);
    border-radius: 15px;
    margin-bottom: 3rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Content Sections */
.content-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(17,17,0,0.5);
    border-radius: 15px;
    border: 1px solid rgba(102,102,0,0.2);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-card {
    background: rgba(8,8,8,0.8);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(102,102,0,0.3);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #666600;
}

/* Tables */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: rgba(8,8,8,0.8);
    border-radius: 10px;
    overflow: hidden;
}

.data-table th,
.data-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(102,102,0,0.2);
}

.data-table th {
    background: #666600;
    color: #ffff66;
    font-weight: bold;
}

.data-table tr:hover {
    background: rgba(102,102,0,0.1);
}

/* Images */
.content-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1rem 0;
    transition: transform 0.3s ease;
}

.content-image:hover {
    transform: scale(1.02);
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

/* Footer */
.footer {
    background: #111100;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    border-top: 2px solid #666600;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ffff66;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(102,102,0,0.3);
    padding-top: 1rem;
    color: #bbbb00;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffff66;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #111100;
    border-top: 1px solid #666600;
    padding: 1rem;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    margin-bottom: 0.5rem;
}

.mobile-nav a {
    color: #ffff66;
    text-decoration: none;
    display: block;
    padding: 0.5rem;
    text-align: center;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav {
        gap: 1rem;
    }
    
    .nav a {
        padding: 0.4rem 0.8rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 1600px) {
    .header-container {
        position: relative;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-buttons {
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    
    .btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .main-content {
        padding: 1rem;
    }
    
    .content-section {
        padding: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .data-table {
        font-size: 0.9rem;
    }
    
    .data-table th,
    .data-table td {
        padding: 0.5rem;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .header-buttons {
        width: 100%;
        justify-content: center;
        align-items: center;
        order: 3;
        margin-top: 15px;
    }

    .header-buttons .btn {
        width: 100%;
    }

    .header-container {
        flex-wrap: wrap;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-orange {
    color: #666600;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.highlight {
    background: linear-gradient(90deg, #666600, #666600);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}
