body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background-color: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100vh;
    padding: 20px;
    margin: 0;
    z-index: auto;
}

#logo {
    width: 80px;
}

#main-content {
    max-width: 800px;
    width: 100%;
    text-align: center;
}
.typing-effect {
    vertical-align: top;
    font-size: 14px;
    padding: 10px;
    margin-top: 30px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.2;
    width: 95%;
    border-radius: 5px;
    position: relative;
    white-space: pre-wrap;
    max-width: 800px;
    overflow-wrap: break-word;
    display: inline-block;
    z-index: 1000;
}
.typing-effect::after {
    content: "";
    display: inline-block;
    width: 25px;
    height: 14px;
    background: url('fire1.gif') no-repeat center center;
    background-size: contain;
    position: relative;
    left: -10px;
    top: 2px;
    z-index: 1000;
}

.typing-effect .punctuation {
    display: inline-block;
    position: relative;
  }
  
  .typing-effect .punctuation::after {
    content: "";
    display: inline-block;
    width: 25px;
    height: 14px;
    background: url('fire1.gif') no-repeat center center;
    background-size: contain;
    position: absolute;
    left: -11px;
    top: 2px;
    z-index: 1000;
  }

#typewriter {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
  }

@media (min-width: 768px) {
    .typing-effect {
        width: 90%; 
        font-size: 14px;

    }
    #logo {
        width: 100px;
    }
}

@media (min-width: 1024px) {
    .typing-effect {
        width: 80%;
        font-size: 16px;
    }

    #logo {
        width: 100px;
    }
}


.contact-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    background-color:white;
    color: black;
    border: none;
    border-radius: 40px;
    margin-right: 10px;
    text-decoration: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
}


@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

.more-container {
    position: absolute;
    top: 60px;
    right: 20px;
  }

  .moreButton {
    color: white;
    background: none;
    border: none;
    font-size: 14px;
    cursor: pointer;
  }
  .more-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #222;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border-radius: 0;
    overflow-y: auto;
    opacity: 90%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.more-menu a {
    display: block;
    color: white;
    font-size: 12px;
    text-decoration: none;
    padding: 10px 20px;
    margin: 10px 0;
}

.more-menu a:hover {
    background: #444;

}

.more-menu.active {
    display: flex;
}

.closeButton {
    position: absolute;
    top: 13px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 14px;
    cursor: pointer;
    padding: 10px;
}

.closeButton:hover {
    color: #ccc;
}


  .themeToggle {
    position: absolute;
    top: 65px;
    left: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 14px;
    cursor: pointer;
}

#skipButton {
    background: none;
    border: 2px solid white;
    color: white;
    font-size: 14px;
    cursor: pointer;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    animation: blink 1.5s infinite;
    position: fixed;
    top: 400px;
    right: 20px;
    z-index: 1000;
    transition: background 0.3s ease, border-color 0.3s ease;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

#skipButton:hover {
    background: rgba(255, 255, 255, 0.1); 
    border-color: rgba(255, 255, 255, 0.8);
}


.light-theme {
    background-color: white;
    color: black;
}

.light-theme .more-menu {
    background: #ddd; 
    color: #000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.light-theme .more-menu a {
    color: black;
}

.light-theme .more-menu a:hover {
    background: #ccc;
}

.light-theme .moreButton {
    color: black;
}

.light-theme .themeToggle {
    color: black
}

.light-theme .closeButton {
    color: black;
}

.light-theme .closeButton:hover {
    color: #555;
}

.light-theme #skipButton {
    border: 1px solid black;
    color: black;
}

.light-theme #skipButton:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.8);
}


@media (min-width: 1024px) {
    .themeToggle {
        top: 96px;
        left: 550px;
    }

    .more-container {
        top: 96px;
        right: 550px;
    }

    .closeButton {
        margin-top: 79px;
        margin-right: 540px;
    }
}

.more-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  
  .more-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
#play-pause-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
}

#play-pause-btn svg {
    width: 32px;
    height: 32px;
    fill: white;
}

#music-popup {
    position: absolute;
    background: #1a1a1a;
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    height: 80%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

#overlay.active #music-popup {
    transform: translateY(0);
}

#music-popup p {
    margin-top: 300px;
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.5;
}

#yesButton {
    background: none;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s ease;
    width: 100%;
    max-width: 200px;
    z-index: 6000;
}

#yesButton:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.light-theme #music-popup {
    background: #fff;
    color: #333;
    border: 1px solid #e0e0e0;
}

.light-theme #yesButton {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mute-line {
    stroke: white;
  } */
  
  .light-theme .mute-line {
    stroke: black; 
  }