@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Montserrat:wght@300;400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    background: radial-gradient(circle at top, #0b2f4a, #020b16);
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    color: #f5f5f5;
}

/* Ocean */
.ocean {
    position: absolute;
    width: 100%;
    height: 100%;
}

.wave {
    position: absolute;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.03);
    border-radius: 45%;
    animation: drift 25s infinite linear;
}

.wave1 { bottom: -120%; }
.wave2 { bottom: -130%; animation-duration: 30s; }
.wave3 { bottom: -140%; animation-duration: 35s; }

@keyframes drift {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Skyline */
/* Karachi Skyline */
.skyline {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 80px;
    z-index: 5;
    pointer-events: none;
}

/* Quaid-e-Azam Mausoleum */
.mausoleum {
    position: relative;
    width: 160px;
    height: 90px;
    background: rgba(0, 0, 0, 0.65);
    border-radius: 6px 6px 0 0;
}

.mausoleum::before {
    content: "";
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 110px;
    background: rgba(0, 0, 0, 0.65);
    border-radius: 50%;
}

/* Habib Bank Plaza */
.habib-bank {
    width: 60px;
    height: 180px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 4px 4px 0 0;
    position: relative;
}

.habib-bank::after {
    content: "";
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 18px;
    background: rgba(0, 0, 0, 0.7);
}

/* Teen Talwar */
.teen-talwar {
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.teen-talwar span {
    width: 14px;
    height: 140px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 6px 6px 0 0;
}

.teen-talwar span:nth-child(2) {
    height: 165px;
}

.teen-talwar span:nth-child(3) {
    height: 140px;
}

/* Content */
.content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.pearl {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 30% 30%, #fffdf7, #d4c7a1);
    border-radius: 50%;
    box-shadow: 0 0 45px rgba(212,199,161,0.8);
    margin-bottom: 30px;
    animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
    0%,100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    letter-spacing: 2px;
}

h2 {
    font-weight: 300;
    letter-spacing: 3px;
    margin-top: 8px;
    color: #d4c7a1;
}

.tagline {
    margin-top: 25px;
    font-size: 1.1rem;
    opacity: 0.85;
}

.divider {
    width: 90px;
    height: 2px;
    background: linear-gradient(to right, transparent, #d4c7a1, transparent);
    margin: 30px 0;
}

.status {
    font-size: 0.95rem;
    opacity: 0.75;
}

.footer {
    position: absolute;
    bottom: 20px;
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Sound Button */
#soundToggle {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(212,199,161,0.6);
    color: #d4c7a1;
    font-size: 1.2rem;
    padding: 10px 14px;
    border-radius: 50%;
    cursor: pointer;
}
