* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Roboto', sans-serif;
    color: #fff;
    background-color: #000;
    overflow: hidden;
    cursor: url('../images/pink-purple-cursor.png'), auto; /* Kursor z gradientem różowo-fioletowym */
}

.fullscreen-bg {
    position: relative;
    height: 100%;
    width: 100%;
    background: linear-gradient(135deg, #6a1b9a, #d500f9); /* Gradient tła */
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Ciemne tło z przezroczystością */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.center-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.center-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #ff66cc; /* Fioletowo/różowy kolor zgodny z logo */
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    animation: textAnimation 3s ease-in-out infinite; /* Animacja tekstu nagłówka */
}

.center-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #ff66cc; /* Fioletowo/różowy kolor zgodny z logo */
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.6); /* Efekt świetlenia */
    animation: textAnimation 3s ease-in-out infinite; /* Animacja tekstu */
}

.buttons {
    display: flex;
    flex-direction: column; /* Ustawienie przycisków pionowo */
    gap: 15px; /* Odstęp między przyciskami */
}

.cta-button {
    background: #ff66cc; /* Jednolity kolor tła przycisków */
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 1rem;
    border: 2px solid transparent;
    border-radius: 30px; /* Zaokrąglone rogi */
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
}

.cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2); /* Subtelne podświetlenie tła */
    border-radius: 30px;
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button:hover {
    transform: translateY(-3px); /* Subtelny efekt podniesienia przycisków */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Cień przycisków przy hoverze */
}

@keyframes gradientAnimation {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

@keyframes textAnimation {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 0.7; }
}