/* Styles */
@import url('https://fonts.googleapis.com/css?family=Cairo');

body {
    margin: 0;
    font-family: "Cairo", sans-serif;
    scroll-behavior: smooth;
    background-color: #000;
    overflow-x: hidden;
    transition: background-color 0.8s ease-in-out;
    -webkit-user-select: none; 
    -moz-user-select: none; 
    -ms-user-select: none; 
    user-select: none; 
}

.section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
}

.landing {
    text-align: center;
    position: relative;
}

.about {
    background-color: #122;
    color: #FFF;
    text-align: center;
    position: relative;
}

.title h1 {
    background-image: url(https://i.makeagif.com/media/4-13-2015/CV__a-.gif);
    background-size: cover;
    color: transparent;
    -moz-background-clip: text;
    -webkit-background-clip: text;
    font-size: 120px;
    margin: 0;
    opacity: 0;
}



.scroll-down {
    color: #FFF;
    margin-top: 20px;
    animation: bounce 1.5s infinite;
    cursor: pointer;
    font-size: 18px;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .title h1 {
        font-size: 80px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-content p {
        font-size: 16px;
    }
}

#countdown-banner {
    background-color: #1d1d1d;
    color: #fff;
    text-align: center;
    font-size: 20px;
    padding: 10px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    font-family: "Montserrat", sans-serif;
}

#countdown-banner p {
    margin: 0;
}

#countdown-banner span {
    font-weight: bold;
    color: #ff0000;
}

#countdown-banner {
    background-color: #000;
    color: #fff;
    text-align: center;
    font-size: 20px;
    padding: 10px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    font-family: "Montserrat", sans-serif;
}

#countdown-banner p {
    margin: 0;
}

#countdown-banner span {
    font-weight: bold;
    color: #ff0000;
}

.landing .title {
    text-align: center;
    margin-top: 100px;
}

.subtitle {
    font-size: 1.2rem;
    color: white;
    margin: 20px 0;
}

.cta-button {
    background-color: #ff5722;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    opacity: 0;
    transform: translateY(100px);
    animation: slideInBottom 1s ease-out forwards;
    font-family: 'Cairo', sans-serif;
}

@keyframes slideInBottom {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



.cta-button:hover {
    background-color: #d40000;
}

.rotating-text {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(90deg, #ff7e5f, #feb47b);
    -webkit-background-clip: text;
    background-clip: text;
    position: relative;
    z-index: 1;
    opacity: 1;
    animation: slideIn 0.5s ease-in-out forwards;
    white-space: nowrap;
    overflow: hidden;
}


.rotating-text::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: linear-gradient(90deg, rgba(255, 126, 95, 0.5), rgba(254, 180, 123, 0.5));
    filter: blur(20px);
    border-radius: 50%;
    z-index: -1;
    animation: gradientGlow 6s infinite alternate, fadeIn 2s ease-in-out forwards;
}

@keyframes slideOut {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateX(-100%);
        opacity: 0;
    }
}

@keyframes slideIn {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes gradientGlow {
    0% {
        opacity: 0.8;
    }

    100% {
        opacity: 1;
    }
}
.animate__animated {
    animation-fill-mode: both;
}

.animate__flipInX {
    --animate-duration: 1s;
}
.animate__fadeInUp {
    --animate-duration: 0.8s;
}

.animate__animated {
    animation-fill-mode: both;
}

.animate__flipInX {
    --animate-duration: 1s;
}
.animate__fadeInUp {
    --animate-duration: 0.8s;
}

#fire-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.click-hint {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    animation: pulse 2s infinite;
    transition: opacity 0.5s ease;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

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


#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: -1;
}
.section {
    position: relative;
    z-index: 1;
}


        @keyframes pulse {
            0% { transform: translateX(-50%) scale(1); }
            50% { transform: translateX(-50%) scale(1.05); }
            100% { transform: translateX(-50%) scale(1); }
        }
        
        .beta-info {
            color: #fff;
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            font-weight: 600;
        }
