body, html { 
    margin: 0; 
    padding: 0; 
    width: 100%; 
    height: 100%; 
    font-family: 'Segoe UI', sans-serif; 
    background-color: #000; 
    overflow: hidden; 
}

.hero { 
    height: 100vh; 
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://wallpaperaccess.com/full/4119106.jpg'); 
    background-size: cover; 
    background-position: center; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}

.btn-join { 
    background-color: #ff006e; 
    color: white; 
    padding: 18px 45px; 
    border: none; 
    border-radius: 50px; 
    font-size: 20px; 
    font-weight: bold; 
    cursor: pointer; 
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.5); 
}

.modal-overlay { 
    display: none; 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0,0,0,0.85); 
    z-index: 999; 
    justify-content: center; 
    align-items: center; 
}

.browser-window { 
    width: 1000px; 
    height: 650px; 
    background: #fff; 
    border-radius: 8px; 
    box-shadow: 0 25px 50px rgba(0,0,0,0.6); 
    display: flex; 
    flex-direction: column; 
    overflow: hidden; 
    border: 1px solid #3c4043; 
}

.browser-header { 
    background: #202124; 
    color: #fff; 
    user-select: none; 
}

.tab-bar { 
    display: flex; 
    align-items: center; 
    padding: 8px 10px 0 10px; 
    height: 34px; 
}

.window-controls { 
    margin-left: auto; 
    display: flex; 
    gap: 15px; 
    align-items: center; 
    color: #9aa0a6; 
}

.nav-bar { 
    background: #35363a; 
    padding: 4px 10px 8px 10px; 
    display: flex; 
    align-items: center; 
    gap: 12px; 
}

.nav-icons { 
    display: flex; 
    gap: 14px; 
    color: #9aa0a6; 
    font-size: 18px; 
}

.address-container { 
    background: #202124; 
    flex-grow: 1; 
    border-radius: 20px; 
    padding: 6px 15px; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    border: 1px solid #3c4043; 
    color: #e8eaed; 
    font-size: 13px; 
}

.chrome-tools { 
    display: flex; 
    gap: 15px; 
    padding-left: 10px; 
    color: #9aa0a6; 
    align-items: center; 
}

.user-icon { 
    width: 24px; 
    height: 24px; 
    background: #5f6368; 
    border-radius: 50%; 
}

.browser-content { 
    flex-grow: 1; 
    background: #fff; 
    position: relative; 
    overflow: hidden; 
}

.browser-content iframe {
    display: block;
    width: 100%;
    height: 100%;
    pointer-events: auto;
}


#playBtn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 60px;
    background: #ff006e;
    color: white;
    font-size: 20px;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    z-index: 101;
    box-shadow: 0 0 20px rgba(255,0,110,0.5);
    transition: transform 0.2s;
}

#playBtn:hover {
    background: #e60062;
    transform: translate(-50%, -50%) scale(1.05);
}

.hidden {
    display: none !important;
}
