body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #1a1a1a;
    color: #fff;
    overflow-x: hidden;
}

#utc-clock {
    position: fixed;
    top: 20px;
    left: 20px;
    font-size: 1.2rem;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 5px;
    z-index: 1000;
    transition: all 0.3s ease;
}

#utc-clock:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.additional-clocks {
    display: none;
    margin-top: 5px;
}

#utc-clock:hover .additional-clocks {
    display: block;
}

.additional-clocks div {
    margin-top: 5px;
}

@media (max-width: 768px) {
    #utc-clock {
        display: none;
    }
    #desktopNav {
        display: none;
    }
    .mobile-nav {
        display: block;
    }
}

.mobile-nav {
    /* display: none; */
    position: fixed;
    top: 0;
    right: 0;
    width: auto;
    /* background-color: #1a1a1a; */
    z-index: 1000;
    padding: 10px;
}

.mobile-nav-menu {
    display: none;
    padding: 0;
    margin: 0;
    list-style-type: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #1a1a1a;
    width: 200px;
}

.mobile-nav-menu.active {
    display: block;
}

.mobile-nav-menu li {
    padding: 10px 15px;
    text-align: right;
}

.mobile-nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    display: block;
}

.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 15px;
    margin-left: auto;
}

.bar {
    width: 30px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s linear;
}

.mobile-nav-menu {
    display: none;
    list-style-type: none;
    padding: 0;
    margin: 0;
    background-color: #1a1a1a;
}

.mobile-nav-menu.active {
    display: block;
}

.mobile-nav-menu li {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #333;
}

.mobile-nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

@media (min-width: 769px) {
    .mobile-nav {
        display: none;
    }
}
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    position: relative;
    overflow: hidden;
}
.hero h1 {
    font-size: 5rem;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
}

#cursor {
    opacity: 1;
    animation: blink 0.7s infinite;
    color: #fff;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}
.hero h1:hover {
    background: linear-gradient(45deg, #4ecdc4, #ff6b6b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transform: scale(1.05);
}
.content {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}
.cool-fact {
    background-color: #2c2c2c;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 5px;
    transition: transform 0.3s ease;
}
.cool-fact:hover {
    transform: scale(1.05);
}

.cool-fact {
    position: relative;
    padding-right: 80px; /* Make space for the logo */
}

.company-logo {
    position: absolute;
    bottom: 10px;
    right: 10px;
    max-width: 60px;
    max-height: 60px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.cool-fact:hover .company-logo {
    opacity: 1;
}
.nav {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
}
.nav-btn {
    background-color: rgba(255,255,255,0.2);
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.nav-btn:hover {
    background-color: rgba(255,255,255,0.4);
}
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
        letter-spacing: 0.3rem;
    }
    .nav {
        top: 10px;
        right: 10px;
    }
    .nav-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    .content {
        padding: 1rem;
    }
}
#particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    background-color: rgba(255,255,255,0.7);
    border-radius: 50%;
    pointer-events: none;
}
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.popup.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}
.popup-content {
    background-color: #2c2c2c;
    padding: 30px;
    border-radius: 10px;
    color: #fff;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}
.popup.active .popup-content {
    transform: scale(1);
}
.spotify-widget {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
}
.spotify-widget iframe {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.spotify-icon {
    display: none;
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 11;
    cursor: pointer;
}
.spotify-icon img {
    width: 40px;
    height: 40px;
}
@media (max-width: 768px) {
    .spotify-widget {
        display: none;
    }
    .spotify-icon {
        display: block;
    }
    #desktopNav {
        display: none;
    }
}
.popup-content h3 {
    margin-top: 0;
    font-size: 24px;
    margin-bottom: 20px;
}
.popup-content ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
}
.popup-content li {
    margin: 10px 0;
    text-align: left;
}
.popup-content a {
    color: #4ecdc4;
    text-decoration: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}
.popup-content a:hover {
    transform: scale(1.05);
}
.popup-content img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}
.popup-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.popup-button {
    background-color: #ff6b6b;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
.popup-button:hover {
    background-color: #ff8787;
}
#hiddenLinksPopup .popup-content ul {
    flex-direction: column;
    align-items: flex-start;
}
#hiddenLinksPopup .popup-content li {
    margin: 10px 0;
    flex-basis: auto;
    width: 100%;
    text-align: left;
}
#hiddenLinksPopup .popup-content a {
    font-size: 18px;
    transition: color 0.3s ease;
}
#hiddenLinksPopup .popup-content a:hover {
    color: #ff6b6b;
    transform: none;
}

.resume-download {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.resume-btn {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.resume-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    background: linear-gradient(45deg, #4ecdc4, #ff6b6b);
}
#visitorLocations {
    list-style-type: none;
    padding: 0;
    margin-top: 10px;
}

#visitorLocations li {
    margin-bottom: 5px;
    font-size: 0.9em;
    color: #ccc;
}

#visitorLocations li::before {
    margin-right: 5px;
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.ghost {
    position: fixed;
    z-index: 1000;
    user-select: none;
    pointer-events: none;
}
