/* === SHIBUYA PUNK AESTHETIC === */
@import url('https://fonts.cdnfonts.com/css/white-on-black');

body {
    margin: 0;
    padding: 0;
    background: #000;
    font-family: 'White On Black', sans-serif;
}

.wrapper {
    background: black;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    background-image: url('https://i.imgur.com/8qmfyZz.jpeg');
}

.sidebar {
    color: #e69c32;
    position: fixed;
    top: 70%;
    left: 13%;
    transform: translate(-50%, -50%) rotate(-30deg);
    font-size: 2.5rem;
    z-index: 2;
    filter: drop-shadow(2px 2px 0 #000);
}

.sidebar-fill {
    position: relative;
    top: 0;
    left: -180px;
    width: 250px;
    height: 130vh;
    transform: rotate(-30deg) skewY(-5deg);
    border: 4px solid #e69c32;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    animation: slideFromLeft 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    filter: contrast(1.1) saturate(1.2) brightness(0.9);
    box-shadow: 8px 8px 0 #000;
}

.menu-option {
    cursor: pointer;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 2px 2px 0 #000;
    padding: 0.7rem 1.3rem;
    background: rgba(0, 0, 0, 0.85);
    border: 2px solid #e69c32;
    transform: skewX(-3deg);
    font-family: 'White On Black', sans-serif;
    overflow: hidden;
}

.menu-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(230, 156, 50, 0.2), transparent);
    transition: left 0.5s ease;
}

.menu-option:hover::before {
    left: 100%;
}

.menu-option::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff4444;
    transition: width 0.3s ease 0.1s;
}

.menu-option:hover {
    color: #000;
    background: #e69c32;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
    transform: translateX(15px) skewX(-3deg);
    border: 2px solid #000;
    box-shadow: 3px 3px 0 #000;
}

.menu-option:hover::after {
    width: 100%;
}

.menu-option .graffiti-mark {
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.3s ease;
    color: #ff4444;
    text-shadow: 1px 1px 0 #000;
}

.menu-option:hover .graffiti-mark {
    opacity: 1;
    transform: translateY(-50%) rotate(-45deg) translateX(5px);
}

.menu-option:nth-child(1) .graffiti-mark { content: "✱"; }
.menu-option:nth-child(2) .graffiti-mark { content: "⚡"; }
.menu-option:nth-child(3) .graffiti-mark { content: "♫"; }
.menu-option:nth-child(4) .graffiti-mark { content: "➜"; }

/* Staggered entrance */
.menu-option:nth-child(1) { animation: slideInLeft 0.5s ease 0.1s both; }
.menu-option:nth-child(2) { animation: slideInLeft 0.5s ease 0.2s both; }
.menu-option:nth-child(3) { animation: slideInLeft 0.5s ease 0.3s both; }
.menu-option:nth-child(4) { animation: slideInLeft 0.5s ease 0.4s both; }

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: skewX(-3deg) translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: skewX(-3deg) translateX(0);
    }
}


.main {
    background: #e69c32;
    position: fixed;
    top: 50%;
    left: 53%;
    width: 46%;
    height: 80vh;
    transform: translate(-50%, -50%) skewY(-1deg);
    border: 4px solid #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: mainEntrance 1s cubic-bezier(0.23, 1, 0.32, 1) 0.4s both;
    box-shadow: 12px 12px 0 #000, 0 0 30px rgba(230, 156, 50, 0.3);
}

.main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shine 3s ease-in-out infinite;
    pointer-events: none;
}

.main-content {
    width: 90%;
    height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.map-container {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    border: 3px solid #000;
    padding: 2rem;
    position: relative;
    transform: rotate(-0.5deg);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
}

.map-title {
    font-size: 2rem;
    color: #000;
    text-shadow: 2px 2px 0 #e69c32;
    text-align: center;
    margin-bottom: 2rem;
    background: #e69c32;
    padding: 0.8rem 2.5rem;
    border: 3px solid #000;
    transform: rotate(-1deg);
    box-shadow: 5px 5px 0 #000;
    position: relative;
    overflow: hidden;
}

.map-title::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: titleShine 3s ease-in-out infinite;
}

.map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2rem;
    height: 70%;
    padding: 1rem;
}

.location {
    position: relative;
    background: #000;
    border: 3px solid #e69c32;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transform: skewX(-1deg);
}

.location:hover {
    background: #e69c32;
    transform: scale(1.08) rotate(2deg) skewX(-1deg);
    box-shadow: 8px 8px 0 #000, 0 0 20px rgba(230, 156, 50, 0.5);
    animation: locationPulse 0.5s ease;
}

.location:hover .location-label {
    color: #000;
    text-shadow: 2px 2px 0 #fff;
    transform: scale(1.1);
}

.location-pin {
    width: 14px;
    height: 14px;
    background: #ff4444;
    border: 2px solid #000;
    border-radius: 50%;
    position: absolute;
    top: 12px;
    left: 12px;
    animation: pulse 2s infinite;
    box-shadow: 0 0 8px #ff4444;
}

.location-label {
    color: #e69c32;
    font-size: 1.3rem;
    text-shadow: 2px 2px 0 #000;
    text-align: center;
    padding: 1.2rem;
    transition: all 0.3s ease;
    transform: skewX(1deg);
}

@keyframes slideFromLeft {
    0% {
        transform: rotate(-30deg) skewY(-5deg) translateX(-300px);
        opacity: 0;
    }
    100% {
        transform: rotate(-30deg) skewY(-5deg) translateX(0);
        opacity: 1;
    }
}

@keyframes slideFromRight {
    0% {
        transform: rotate(-30deg) skewY(-5deg) translateX(300px);
        opacity: 0;
    }
    100% {
        transform: rotate(-30deg) skewY(-5deg) translateX(0);
        opacity: 1;
    }
}

@keyframes mainEntrance {
    0% {
        transform: translate(-30%, -50%) skewY(-1deg) scale(0.8);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) skewY(-1deg) scale(1);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.4);
        opacity: 0.8;
    }
}

@keyframes scan {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes shine {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

@keyframes titleShine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes optionGlitch {
    0%, 100% {
        transform: translateX(25px) scale(1.05) skewX(-5deg);
    }
    33% {
        transform: translateX(27px) scale(1.05) skewX(-7deg);
    }
    66% {
        transform: translateX(23px) scale(1.05) skewX(-3deg);
    }
}

@keyframes locationPulse {
    0%, 100% {
        transform: scale(1.08) rotate(2deg) skewX(-1deg);
    }
    50% {
        transform: scale(1.1) rotate(2deg) skewX(-1deg);
    }
}