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

.hypp-nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hypp-nav-logo-container {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.hypp-nav-logo {
    max-height: 60px;
    width: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hypp-nav-logo:hover {
    transform: scale(1.05);
}

.hypp-nav-buttons-container {
    display: flex;
    gap: 15px;
}

.hypp-nav-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	text-decoration-line: none;
}

.hypp-nav-button-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 8px;
    object-fit: contain;
}

#hypp-nav-games-btn {
    background: linear-gradient(135deg, #D983EB 0%, #D75BF0 100%);
}

#hypp-nav-games-btn:hover {
    background: linear-gradient(135deg, #D75BF0 0%, #D983EB 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(102, 126, 234, 0.4);
}

#hypp-nav-videos-btn {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

#hypp-nav-videos-btn:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(245, 87, 108, 0.4);
}

#hypp-nav-shows-btn {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

#hypp-nav-shows-btn:hover {
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(79, 172, 254, 0.4);
}

#hypp-nav-press-btn {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

#hypp-nav-press-btn:hover {
    background: linear-gradient(135deg, #38f9d7 0%, #43e97b 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(67, 233, 123, 0.4);
}

/* Responsive design for screens 600px and below */
@media (max-width: 768px) {
    .hypp-nav-wrapper {
        flex-direction: column;
        padding: 15px;
    }

    .hypp-nav-logo-container {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .hypp-nav-logo {
        max-height: 80px;
    }

    .hypp-nav-buttons-container {
        flex-wrap: nowrap;
        justify-content: center;
        gap: 10px;
    }

    .hypp-nav-button {
        padding: 12px 15px;
        font-size: 12px;
    }

    .hypp-nav-button-icon {
        width: 24px;
        height: 24px;
        margin-bottom: 6px;
    }
}

/* Ensure elements stay visible on very small screens */
@media (max-width: 400px) {
    .hypp-nav-button {
        padding: 10px 12px;
        font-size: 10px;
    }

    .hypp-nav-button-icon {
        width: 20px;
        height: 20px;
    }
}
