* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #849095;
    background-image: url('../images/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: #000000;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px); */
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.profile-header {
    background: #87c2c0;
    width: 60%;
    margin: 40px auto 0;
    border-radius: 30px;
    padding: 30px;
    text-align: center;
    transform-style: preserve-3d;
    box-shadow: 0 2px 10px #80b5d4;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

.name {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #2d81b1, #60c7b9);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}

.name:hover {
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    width: 30px;
    height: 30px;
    transition: all 0.3s ease;
    box-shadow: #c3baba;
}

.social-icon:hover {
    transform: scale(1.1);
}

.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: fixed;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    animation: float linear infinite;
}

@keyframes float {
    0% {
        transform: translate(0, -10%) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translate(100px, 100vh) rotate(720deg);
        opacity: 0;
    }
}

.landing-page {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    transform: none;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    cursor: pointer;
    z-index: 999;
}

.click-me-btn {
    padding: 15px 30px;
    font-size: 1.5rem;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.click-me-btn:hover {
    transform: scale(1.1);
    background-color: rgba(96, 199, 185, 0.2);
    box-shadow: 0 6px 20px rgba(96, 199, 185, 0.4);
}

.click-me-btn:active {
    transform: scale(0.95);
}

.click-me-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: 0.5s;
}

.click-me-btn:hover::before {
    left: 100%;
}

.hidden {
    display: none;
}

@keyframes fadeScale {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.scale-animation {
    animation: fadeScale 0.2s ease-out forwards;
    transform-origin: center;
    will-change: transform, opacity;
}

.badge {
    background-color: rgba(96, 199, 185, 0.1);
    color: rgb(162, 255, 1);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    border: 1px solid rgb(249, 226, 81);
    display: inline-block;
    margin: 0 0 20px 5px;
    font-weight: 500;
    backdrop-filter: blur(5px);
}

.divider {
    width: 85%;
    margin: 0 auto 15px auto;
    border: none;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3) 20%,
        rgba(255, 255, 255, 0.3) 80%,
        transparent
    );
}

.quote-container {
    margin: 0 auto 10px auto;
    font-style: italic;
    color: #4b5334;
    position: relative;
    padding: 10px 20px;
    font-size: 17px;
}

