* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    color: #000000;
}

body, html {
    height: 100%;
    background-color: #000;
    color: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    max-width: 600px;
    text-align: center;
    position: relative;
    z-index: 1;
}


body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle 250px at var(--mouseX) var(--mouseY), rgba(247, 247, 247, 0.9), rgba(0, 0, 0, 0.9) 90%);
    pointer-events: none;
    mix-blend-mode: screen;
}




.click-screen {
    width: 10000px;
    height: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: fixed;
    z-index: 10;
    animation: colorChange 5s infinite;
    transition: background-color 1s ease, opacity 1s ease;  
}

.click-screen h1 {
    font-size: 48px;
    margin: 0;
    color: gold;
    text-shadow: 0 0 8px rgba(89, 0, 255, 1);

}

#icons {
    margin-top: 20px;
    
}

#icon {
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    margin: 0px;
    
}

#icon {
    transition: transform 0.3s ease;
}

#icon:hover {
    transform: scale(1.2) rotate(5deg);
}

#rating {
    margin-top: 20px;
}

button {
    width: 40px;
    height: 40px;
    margin: 0px;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);    
}



.rating {
    display: flex;
    align-items: center; 
    justify-content: center;
    width: 50px; 
    height: 50px;
    background-color: #251818; 
    border: none; 
    color: rgb(0, 0, 0); 
    font-size: 16px; 
    cursor: pointer; 
    border-radius: 5px;
    transition: background-color 0.3s;
    background-color: transparent;

    
}

.like {
    width: 20px; 
    height: 20px;
    margin-right: 10px; 

}

#rating{
    display: inline-block;
    position: relative;
    left: 100px;
}


#button1{
    position: relative;
    left: 70px;
    bottom: 50px;
}

button:hover {
    background: #fffefe;
    transform: scale(1.5);
}


button:hover {
    opacity: 0.7; 
}

#icons{
    position: relative;
    right: -140px;
    
}

#like-count{
    color: rgb(0, 0, 0);
}
#dislike-count{
    color: rgb(0, 0, 0);
}

#view{
    position: relative;
    top: -99px;
    left: 145px;
    display: inline-block;

}

#views{
    background-color: #000000; 

}

#views-count{
    color: rgb(0, 0, 0);
}

.hover-rating{
    z-index: 2;
}

.click-screen h1 {
    animation: flicker 1s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 50; }
    50% { opacity: 0.8; }
    75% { opacity: 0.9; }
}

.click-screen h1 {
    font-size: 48px;
    animation: wobble 0.5s ease-in-out infinite; 
}

@keyframes wobble {
    0%, 100% { transform: rotate(3deg); }
    25% { transform: rotate(5deg); }
    50% { transform: rotate(-4deg); }
    75% { transform: rotate(-1.5deg); }
}



@keyframes colorChange {
    0% { background-color: rgb(212, 219, 168); }
    25% { background-color: rgb(255, 105, 180); }
    50% { background-color: rgb(100, 149, 237); }
    75% { background-color: rgb(255, 255, 102); }
    100% { background-color: rgb(212, 219, 168); }
}


/* Typewriter Effect Styles */
.typing-header, .typing-paragraph {
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    border-right: 2px solid gold; /* Simulates the blinking caret */
}

/* Typing animation for the header */
.typing-header {
    animation: typing-header 4s steps(30, end), blink-caret 0.5s step-end infinite;
}

/* Typing animation for the paragraph */
.typing-paragraph {
    animation: typing-paragraph 4s steps(30, end) 4s forwards, blink-caret 0.5s step-end infinite;
}

/* Keyframes for typing effect */
@keyframes typing-header {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes typing-paragraph {
    from { width: 0; }
    to { width: 100%; }
}

/* Keyframes for blinking caret */
@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: gold; }
}

