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

body {
    background: 
        /* Subtle grid pattern for retro feel */
        linear-gradient(rgba(255, 20, 147, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 20, 147, 0.02) 1px, transparent 1px),
        /* Main black background */
        #000;
    background-size: 50px 50px;
    color: #fff;
    font-family: 'Comic Neue', cursive;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Add subtle ambient lighting effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at 50% 0%,
        rgba(255, 20, 147, 0.03) 0%,
        transparent 50%
    );
    pointer-events: none;
    z-index: -1;
}

/* Import 1970s style font */
@import url('https://fonts.googleapis.com/css2?family=Bungee&family=Orbitron:wght@400;700;900&display=swap');

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100vw;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    box-sizing: border-box;
}

/* Header Styles */
.header {
    text-align: center;
    margin-bottom: 50px;
    padding: 20px;
    position: relative;
}

/* Responsive design for neon title */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
}

.title {
    font-family: 'Bungee', cursive;
    font-size: 4.5rem;
    font-weight: 400;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 8px;
    position: relative;
    text-shadow: 
        /* Inner pink glow */
        0 0 5px #ff1493,
        0 0 10px #ff1493,
        0 0 15px #ff1493,
        /* Mid pink glow */
        0 0 20px #ff69b4,
        0 0 30px #ff69b4,
        0 0 40px #ff69b4,
        /* Outer pink glow */
        0 0 50px #ff69b4,
        0 0 60px #ff1493,
        0 0 70px #ff1493,
        /* Neon tube effect */
        0 0 80px rgba(255, 20, 147, 0.8),
        0 0 90px rgba(255, 20, 147, 0.6),
        0 0 100px rgba(255, 20, 147, 0.4);
    animation: neonFlicker 3s ease-in-out infinite alternate;
    /* Keep black letters visible */
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.8);
}

/* Add a subtle background glow behind the text */
.title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(ellipse at center, 
        rgba(255, 20, 147, 0.1) 0%, 
        rgba(255, 105, 180, 0.05) 50%, 
        transparent 70%);
    z-index: -1;
    border-radius: 20px;
}

/* Add retro scan lines effect */
.title::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 20, 147, 0.03) 2px,
        rgba(255, 20, 147, 0.03) 4px
    );
    pointer-events: none;
    z-index: 1;
}

@keyframes neonFlicker {
    0%, 100% {
        text-shadow: 
            0 0 5px #ff1493,
            0 0 10px #ff1493,
            0 0 15px #ff1493,
            0 0 20px #ff69b4,
            0 0 30px #ff69b4,
            0 0 40px #ff69b4,
            0 0 50px #ff69b4,
            0 0 60px #ff1493,
            0 0 70px #ff1493,
            0 0 80px rgba(255, 20, 147, 0.8),
            0 0 90px rgba(255, 20, 147, 0.6),
            0 0 100px rgba(255, 20, 147, 0.4);
        filter: brightness(1);
    }
    25% {
        text-shadow: 
            0 0 2px #ff1493,
            0 0 5px #ff1493,
            0 0 8px #ff1493,
            0 0 12px #ff69b4,
            0 0 18px #ff69b4,
            0 0 25px #ff69b4,
            0 0 35px #ff69b4,
            0 0 45px #ff1493,
            0 0 55px #ff1493,
            0 0 65px rgba(255, 20, 147, 0.6),
            0 0 75px rgba(255, 20, 147, 0.4),
            0 0 85px rgba(255, 20, 147, 0.2);
        filter: brightness(0.8);
    }
    50% {
        text-shadow: 
            0 0 8px #ff1493,
            0 0 15px #ff1493,
            0 0 20px #ff1493,
            0 0 25px #ff69b4,
            0 0 35px #ff69b4,
            0 0 45px #ff69b4,
            0 0 55px #ff69b4,
            0 0 65px #ff1493,
            0 0 75px #ff1493,
            0 0 85px rgba(255, 20, 147, 0.9),
            0 0 95px rgba(255, 20, 147, 0.7),
            0 0 105px rgba(255, 20, 147, 0.5);
        filter: brightness(1.2);
    }
    75% {
        text-shadow: 
            0 0 3px #ff1493,
            0 0 7px #ff1493,
            0 0 12px #ff1493,
            0 0 17px #ff69b4,
            0 0 22px #ff69b4,
            0 0 30px #ff69b4,
            0 0 40px #ff69b4,
            0 0 50px #ff1493,
            0 0 60px #ff1493,
            0 0 70px rgba(255, 20, 147, 0.7),
            0 0 80px rgba(255, 20, 147, 0.5),
            0 0 90px rgba(255, 20, 147, 0.3);
        filter: brightness(0.9);
    }
}

/* Gender Icons Styles */
.gender-icon {
    font-size: 1.8rem;
    font-weight: bold;
    margin-right: 8px;
    display: inline-block;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.button-text {
    font-size: 1rem;
    font-weight: 600;
}

/* Female Icon - Pink */
.female-icon {
    color: #ff69b4;
    text-shadow: 
        0 0 2px #ff69b4,
        0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Male Icon - Blue */
.male-icon {
    color: #4da6ff;
    text-shadow: 
        0 0 2px #4da6ff,
        0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Couple Icon - Blue and Pink */
.couple-icon {
    background: linear-gradient(45deg, #4da6ff 0%, #4da6ff 45%, #ff69b4 55%, #ff69b4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 1px #4da6ff) drop-shadow(0 0 1px #ff69b4);
}

/* Trans Icon - Blue, Pink, White gradient */
.trans-icon {
    background: linear-gradient(45deg, #4da6ff 0%, #4da6ff 30%, #ffffff 40%, #ffffff 60%, #ff69b4 70%, #ff69b4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 1px #4da6ff) drop-shadow(0 0 1px #ff69b4) drop-shadow(0 0 1px #ffffff);
}

/* Hover effects for gender icons */
.menu-link:hover .gender-icon {
    transform: scale(1.05);
    filter: brightness(1.1) drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}

.menu-link:hover .female-icon {
    text-shadow: 
        0 0 3px #ff69b4,
        0 1px 3px rgba(0, 0, 0, 0.4);
}

.menu-link:hover .male-icon {
    text-shadow: 
        0 0 3px #4da6ff,
        0 1px 3px rgba(0, 0, 0, 0.4);
}

.menu-link:hover .couple-icon {
    filter: drop-shadow(0 0 2px #4da6ff) drop-shadow(0 0 2px #ff69b4) brightness(1.1);
}

.menu-link:hover .trans-icon {
    filter: drop-shadow(0 0 1.5px #4da6ff) drop-shadow(0 0 1.5px #ff69b4) drop-shadow(0 0 1.5px #ffffff) brightness(1.1);
}

/* Menu System Styles */
.menu-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.menu-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 50vw;
    min-width: 400px;
    max-width: 800px;
}

.menu-row {
    display: flex;
    gap: 15px;
    justify-content: center;
    width: 100%;
}

.menu-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Top row: 4 equal buttons */
.menu-row:first-child .menu-item {
    flex: 1;
    width: calc(50% / 4);
}

/* Bottom rows: full width buttons */
.menu-row:not(:first-child) .menu-item {
    width: 100%;
}

.menu-link, .more-btn {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    border: 2px solid transparent;
    color: transparent;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none;
    z-index: 10;
}

.menu-link:hover, .more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    filter: brightness(1.1);
}

/* Button Styles */
.menu-link, .more-btn {
    width: 100%;
    height: 60px;
    border-radius: 15px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Color variations - 70% darker */
.blue-btn {
    background: linear-gradient(45deg, #1a2a5c, #0d3d6b);
}

.purple-btn {
    background: linear-gradient(45deg, #3a1152, #3c2a5d);
}

.red-btn {
    background: linear-gradient(45deg, #5c1820, #6b1f0d);
}

.orange-btn {
    background: linear-gradient(45deg, #ff8c00, #ffa500);
}

.green-btn {
    background: linear-gradient(45deg, #32cd32, #228b22);
}

.teal-btn {
    background: linear-gradient(45deg, #0d4a47, #003a3a);
}



/* More Section */
.more-section {
    width: 100%;
    max-width: 800px;
    margin-top: 20px;
    display: none;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.more-content {
    background: rgba(255, 105, 180, 0.1);
    border: 2px solid #ff69b4;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 0 30px rgba(255, 105, 180, 0.3);
}

.more-content h3 {
    color: #ff69b4;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}

.choices-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 6px;
    max-height: none;
    overflow-y: visible;
}

.choice-item {
    background: linear-gradient(45deg, rgba(255, 105, 180, 0.2), rgba(255, 20, 147, 0.2));
    border: 1px solid #ff69b4;
    border-radius: 6px;
    padding: 6px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.choice-item:hover {
    background: linear-gradient(45deg, rgba(255, 105, 180, 0.4), rgba(255, 20, 147, 0.4));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
}

.choice-item h4 {
    color: #ffff00;
    margin-bottom: 0;
    font-size: 0.8rem;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    font-weight: bold;
    line-height: 1.2;
}

.choice-item p {
    color: #ccc;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    .menu-grid {
        max-width: 100%;
        gap: 15px;
    }
    
    .menu-row {
        gap: 10px;
    }
    
    .menu-link, .more-btn {
        height: 50px;
        font-size: 16px;
    }
    
    .more-content {
        padding: 15px;
    }
    
    .choices-list {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        max-height: none;
        overflow-y: visible;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }
    
    .menu-grid {
        gap: 10px;
    }
    
    .menu-row {
        gap: 8px;
    }
    
    .menu-link, .more-btn {
        height: 45px;
        font-size: 14px;
    }
}
