@import url('https://fonts.googleapis.com/css2?family=Lavishly+Yours&display=swap');

@font-face {
    font-family: 'Helvetica Neue';
    src: url('HelveticaNeue.ttc') format('truetype-collection');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('HelveticaNeue.ttc') format('truetype-collection');
    font-weight: bold;
    font-style: normal;
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #000000;
    overflow: hidden;
    position: relative;
}

/* Safari-compatible background */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-color: #181D47; /* Fallback color */
}

.background:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, #181D47, #232a6c, #2c3485, #181D47);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    -webkit-animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@-webkit-keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    animation: float 15s linear infinite;
    -webkit-animation: float 15s linear infinite;
    z-index: -1;
}

.bubble:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 10%;
    animation-duration: 25s;
    -webkit-animation-duration: 25s;
}

.bubble:nth-child(2) {
    width: 120px;
    height: 120px;
    left: 20%;
    animation-duration: 30s;
    -webkit-animation-duration: 30s;
    animation-delay: 2s;
    -webkit-animation-delay: 2s;
}

.bubble:nth-child(3) {
    width: 50px;
    height: 50px;
    left: 35%;
    animation-duration: 20s;
    -webkit-animation-duration: 20s;
    animation-delay: 5s;
    -webkit-animation-delay: 5s;
}

.bubble:nth-child(4) {
    width: 100px;
    height: 100px;
    left: 50%;
    animation-duration: 22s;
    -webkit-animation-duration: 22s;
    animation-delay: 1s;
    -webkit-animation-delay: 1s;
}

.bubble:nth-child(5) {
    width: 70px;
    height: 70px;
    left: 65%;
    animation-duration: 18s;
    -webkit-animation-duration: 18s;
    animation-delay: 4s;
    -webkit-animation-delay: 4s;
}

.bubble:nth-child(6) {
    width: 90px;
    height: 90px;
    left: 80%;
    animation-duration: 28s;
    -webkit-animation-duration: 28s;
    animation-delay: 3s;
    -webkit-animation-delay: 3s;
}

.bubble:nth-child(7) {
    width: 110px;
    height: 110px;
    left: 90%;
    animation-duration: 35s;
    -webkit-animation-duration: 35s;
}

.bubble:nth-child(8) {
    width: 60px;
    height: 60px;
    left: 5%;
    animation-duration: 26s;
    -webkit-animation-duration: 26s;
    animation-delay: 7s;
    -webkit-animation-delay: 7s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0.3;
    }
}

@-webkit-keyframes float {
    0% {
        -webkit-transform: translateY(100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateY(-100vh) rotate(360deg);
        opacity: 0.3;
    }
}

@keyframes flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        text-shadow:
            0 0 4px #fff,
            0 0 11px #fff,
            0 0 19px #fff,
            0 0 40px #EE9AC0,
            0 0 80px #EE9AC0,
            0 0 90px #EE9AC0,
            0 0 100px #EE9AC0,
            0 0 150px #EE9AC0;
    }
    20%, 24%, 55% {       
        text-shadow: none;
    }
}

.container-fluid {
    background: transparent;
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 20px;
}

.content {
    padding: 2rem;
    border-radius: 10px;
    max-width: 700px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.name {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 6rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    color: #fff;
    text-shadow:
        0 0 7px #fff,
        0 0 10px #fff,
        0 0 21px #fff,
        0 0 42px #ff00de,
        0 0 82px #ff00de,
        0 0 92px #ff00de,
        0 0 102px #ff00de,
        0 0 151px #ff00de;
    animation: pulsate 2s infinite alternate;
}

@keyframes pulsate {
    100% {
        text-shadow:
            0 0 4px #fff,
            0 0 11px #fff,
            0 0 19px #fff,
            0 0 40px #ff00de,
            0 0 80px #ff00de,
            0 0 90px #ff00de,
            0 0 100px #ff00de,
            0 0 150px #ff00de;
    }
    0% {
        text-shadow:
            0 0 2px #fff,
            0 0 4px #fff,
            0 0 6px #fff,
            0 0 10px #ff00de,
            0 0 45px #ff00de,
            0 0 55px #ff00de,
            0 0 70px #ff00de,
            0 0 80px #ff00de;
    }
}

@-webkit-keyframes pulsate {
    100% {
        text-shadow:
            0 0 4px #fff,
            0 0 11px #fff,
            0 0 19px #fff,
            0 0 40px #ff00de,
            0 0 80px #ff00de,
            0 0 90px #ff00de,
            0 0 100px #ff00de,
            0 0 150px #ff00de;
    }
    0% {
        text-shadow:
            0 0 2px #fff,
            0 0 4px #fff,
            0 0 6px #fff,
            0 0 10px #ff00de,
            0 0 45px #ff00de,
            0 0 55px #ff00de,
            0 0 70px #ff00de,
            0 0 80px #ff00de;
    }
}

.contact {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
    color: #83DCFC;
    text-shadow:
        0 0 1px #fff,
        0 0 2px #83DCFC,
        0 0 4px #4db8ff;
}

.contact:last-of-type {
    margin-bottom: 2rem;
}

.contact a {
    color: #83DCFC;
    text-decoration: none;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    text-shadow:
        0 0 1px #fff,
        0 0 2px #83DCFC,
        0 0 4px #4db8ff;
}

.contact a:hover {
    color: #b0eaff;
    text-shadow:
        0 0 1px #fff,
        0 0 3px #b0eaff,
        0 0 6px #4db8ff;
}

.genres {
    font-size: 1.8rem;
    font-weight: 300;
    margin-top: 0.4rem;
    margin-bottom: 0.4rem;
    /* letter-spacing: 3px; */
    color: #83DCFC;
    text-shadow:
        0 0 1px #fff,
        0 0 2px #83DCFC,
        0 0 4px #4db8ff;
}

.genres:first-of-type {
    margin-top: 0;
}

/* Simple hover effects */
.name:hover {
    transform: scale(1.02);
    -webkit-transform: scale(1.02);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.genres:hover {
    transform: scale(1.02);
    -webkit-transform: scale(1.02);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
} 

/* Mobile responsiveness */
@media (max-width: 768px) {

    .name {
        font-size: 3rem;
    }
    
    .contact, .genres {
        font-size: 1.5rem;
    }
    
    .content {
        padding: 1.5rem;
    }
} 