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

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #242424;
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #383838;
    color: white;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    border-bottom: 3px solid #555555;
    position: relative;
    z-index: 100;
}

.header-left {
    display: flex;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    margin-left: 15px;
    display: flex;
    align-items: center;
    letter-spacing: 1px;
}

.header-tux-icon {
    height: 24px;
    width: auto;
    margin-right: 8px;
}

.menu-tux-icon {
    height: 18px;
    width: auto;
    margin-right: 12px;
}

.menu-container {
    position: relative;
}

.menu-btn {
    background-color: #4a4a4a;
    color: white;
    border: 1px solid #222;
    padding: 8px 12px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-btn:hover {
    background-color: #5a5a5a;
}

.menu-btn:active {
    background-color: #333;
    box-shadow: inset 0 3px 5px rgba(0,0,0,0.3);
}

.dropdown-menu {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #2c2c2c;
    border: 1px solid #111;
    box-shadow: 0 6px 12px rgba(0,0,0,0.5);
    min-width: 220px;
    z-index: 1000;
    margin-top: 2px;
}

.dropdown-menu.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #ccc;
    text-decoration: none;
    border-bottom: 1px solid #3a3a3a;
    font-size: 14px;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: #3a3a3a;
    color: #fff;
}

.empty-content-area {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    background-color: #242424;
    padding: 20px;
}

.center-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.giant-linux-logo {
    width: 250px;
    height: auto;
    max-width: 80%;
}

.coming-soon-text {
    color: #777;
    font-weight: normal;
    font-size: 28px;
    margin-top: 20px;
    letter-spacing: 1px;
}

.site-footer {
    background-color: #1a1a1a;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #333;
    font-size: 13px;
    color: #888;
}

.site-footer a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: #fff;
}

@media (max-width: 480px) {
    header {
        padding: 10px 15px;
    }
    
    .logo {
        font-size: 18px;
    }

    .giant-linux-logo {
        width: 180px;
    }

    .coming-soon-text {
        font-size: 22px;
    }
    
    .dropdown-menu {
        min-width: 200px;
    }

    .site-footer {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}
