/* app/assets/stylesheets/portlabs.css */

.audiowide {
    font-family: 'Audiowide', cursive;
}

body {
    background: #000000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-primary {
    background: #00ff41;
    color: #000000;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
}

.btn-primary:hover {
    background: #00ff41;
    transform: translateY(-1px);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.6);
}

.neon-green {
    color: #00ff41;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.menu-item {
    position: relative;
}

.menu-item > button {
    padding-bottom: 8px;
}

.dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 0px);
    left: 0;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    min-width: 220px;
    padding: 8px 0;
    z-index: 1000;
}

.menu-item:hover .dropdown {
    display: block;
}

.dropdown a {
    display: block;
    padding: 12px 20px;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.2s ease;
}

.dropdown a:hover {
    background: #2a2a2a;
}
