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

body {
    background: #000;
    color: #fff;
    font-family: 'Exo 2', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

.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: 30px;
    padding: 20px;
    position: relative;
}

/* Title Styles */
.title {
    font-family: 'Exo 2', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    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;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.8);
}

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

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

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

.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;
}

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

.menu-row:first-child .menu-link {
    height: 80px;
}

/* Second row: 5 equal buttons */
.menu-row:nth-child(2) .menu-item {
    flex: 1;
    width: calc(50% / 5);
}

/* Bottom row: full width button */
.menu-row:last-child .menu-item {
    width: 100%;
}

/* 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);
    text-align: center;
    flex-direction: column;
    gap: 2px;
}

/* Specific styling for region buttons to improve centering */
.menu-row:nth-child(2) .menu-link {
    padding: 8px 4px;
    font-size: 16px;
    line-height: 1.2;
    height: 80px;
}

/* Button text styling for region buttons */
.menu-row:nth-child(2) .button-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.1;
    text-align: center;
    max-width: 100%;
}

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

/* Color variations */
.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);
}

/* 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;
}

/* Region Icons Styles */
.region-icon {
    font-size: 1.8rem;
    font-weight: bold;
    margin-right: 0;
    margin-bottom: 2px;
    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 */
.button-text {
    font-size: 1rem;
    font-weight: 600;
}

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

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

.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 {
    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 icons */
.menu-link:hover .gender-icon,
.menu-link:hover .region-icon {
    transform: scale(1.05);
    filter: brightness(1.1) drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}

/* More Section */
.more-section {
    width: 100%;
    max-width: 800px;
    margin-top: 0;
    display: none;
    animation: slideUp 0.5s ease-out;
    position: relative;
    z-index: 1;
    top: 0;
    left: 0;
}

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

.more-content {
    background: linear-gradient(45deg, rgba(50, 205, 50, 0.1), rgba(34, 139, 34, 0.1));
    border: 2px solid #32cd32;
    border-radius: 0 0 20px 20px;
    border-top: none;
    padding: 20px;
    box-shadow: 0 0 30px rgba(50, 205, 50, 0.3);
    position: relative;
    width: 100%;
    box-sizing: border-box;
    margin-top: 0;
}

/* Create connection to MORE button */
.more-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(45deg, #32cd32, #228b22);
    border-radius: 2px;
}

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

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

.choice-item {
    background: linear-gradient(45deg, rgba(50, 205, 50, 0.2), rgba(34, 139, 34, 0.2));
    border: 1px solid #32cd32;
    border-radius: 6px;
    padding: 6px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.choice-item:hover {
    background: linear-gradient(45deg, rgba(50, 205, 50, 0.3), rgba(34, 139, 34, 0.3));
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(50, 205, 50, 0.2);
}

.choice-item h4 {
    color: #ffffff;
    font-size: 0.9rem;
    margin: 0;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.3);
}
