@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


html, body {
    height: 100%; /* Ensures the body takes full height */
    margin: 0; /* Removes default margin */
    overflow: hidden; /* Prevents scrolling */
}

.full-content {
    font-family: "Montserrat", sans-serif;
    background: #161616;
    background-image: url("bg.png");
    background-repeat: no-repeat;
    background-size: 100%;
    height: 100%; /* Ensures it fills the full viewport height */
    overflow: hidden; /* Prevents any overflow */
}

header {
    width: 100%;
    height: 100px;
    background: #161616;
}

.left-box {
    font-weight: 600;
    font-size: 18px;
    color: #fff;
    width: auto;
    display: flex;
    margin-left: 50px;
    align-items: center;
    float: left;
}

.left-box > p {
    margin-top: 30px;
}

.right-panel {
    height: 85px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.right-panel > span { 
    transition: transform 0.3s ease;
}

.right-panel > span:hover { 
    transform: scale(1.1);
}

.right-box {
    font-weight: 500;
    color: #fff;
    font-size: 18px;
    margin-right: 50px;
    float: right;
}

.right-panel > span {
    margin-left: 20px;
    cursor: url('https://imgur.com/4HlOg5k.png'), pointer;
}

a {
    text-decoration: none; 
    color: inherit;       
}

a:hover {
    text-decoration: none; 
    color: inherit;        
}

a:visited {
    text-decoration: none; 
    color: inherit;        
}

a:active {
    text-decoration: none; 
    color: inherit;        
}
.logo {
    width: 80px;
    margin-top: 10px;
    animation: pulse 3.5s infinite linear;
}

.section-container {
    width: 100%;
    height: 800px;
    align-items: center;
}

.footer {
    width: 100%;
    font-weight: 400;
    text-align: center;
    padding: 4px;
    color: #fff;
}

.particles {
    visibility: hidden;
    width: 4px;
    height: 4px;
    border-radius: 30%;
	background-color: #6f00ed;
    box-shadow: 0 0 5px #6f00ed;
	top: -10vh;
	position: absolute;
	z-index: 0;
	max-width: 100%;
}

.login-page {
    background: red;
    width: 100%;
    margin: 0;
    height: 920px;
}

#discord,
#login {
    background: #331964;
    padding: 7px;
    border-radius: 10px;
}

.image-box {
    float: right;
    margin-top: 200px;
    margin-right: 295px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-box > img {
    width: 400px;
    animation: float 4s infinite linear;
}
.about-box {
    float: left;
    color: #fff;
    text-align: center;
    max-width: 650px;
    margin-left: 250px;
    margin-top: 300px;
    transform: rotate(-0.4deg);
}
.title-about {
    animation: float 4s infinite linear;
    font-size: 50px;
    font-weight: 700;
    height: 50px;
    background: -webkit-linear-gradient( #2871fa
    , #6717cd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
   
}
.about-info {
    animation: float 4s infinite linear;
    font-size: 18px;
    font-weight: 350;
    margin-top: -20px;
  
}
/* Sekcja Dlaczego my */
.why-choose-us {
    padding: 20px 180px;
    text-align: center;
}

.why-choose-us h2 {
    animation: float 5s infinite linear;
    background: -webkit-linear-gradient( #2871fa
    , #6717cd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-size: 2em;
    margin-bottom: 10px;
    margin-top: 1px;
}

.why-choose-us p {
    animation: float 5s infinite linear;
    color: #ccc;
    font-size: 1.1em;
    margin-bottom: 40px;
    margin-top: 8px;
}

/* Karty cech */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;
    justify-items: center;
    margin-top: 10px;
}

.feature-card {
    
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 60px;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card .icon {
    animation: float 5s infinite linear;
    font-size: 2em;
    margin-bottom: 10px;
    color: #6a4df9;
}

.feature-card h3 {
    animation: float 5s infinite linear;
    color: #ffffff;
    font-size: 1.2em;
    margin: 10px 0;
}

.feature-card p {
    color: #b0b0b0;
    font-size: 0.95em;
}

::-webkit-scrollbar {
    display: none; /* Ukrywa scrollbar */
}

/* Dla elementu, w którym chcesz ukryć scrollbar */
.element::-webkit-scrollbar {
    display: none; /* Ukrywa scrollbar tylko dla tego elementu */
}

/* Sekcja Regulaminu */
.terms-container {
    padding: 20px;
    max-height: 80vh;  /* Maksymalna wysokość sekcji (80% wysokości ekranu) */
    color: #fff;  /* Ustaw kolor tekstu na biały */
    border-radius: 8px;
    margin-top: 30px;
}

.terms-content {
    max-width: 1000px;
    margin: 0 auto;
    font-family: "Montserrat", sans-serif;
}

.terms-content h2 {
    font-size: 2.5em;
    background: -webkit-linear-gradient( #2871fa
    , #6717cd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: -70px;
}

.returns-policy {
    position: relative;
    top: -53px; 
}

.terms-content p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.terms-content ul {
    margin-left: 20px;
    list-style-type: disc;
}

.terms-content h3 {
    font-size: 1.3em;
    margin-top: 10px;
    margin-bottom: 10px;
    background: -webkit-linear-gradient( #2871fa
    , #6717cd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.terms-page ul {
    font-size: 14px;  /* Zmniejsza rozmiar czcionki tylko na stronie regulaminu */
    margin-left: 20px;
}



.footer {
    width: 100%;
    font-weight: 400;
    text-align: center;
    padding: 4px;
    color: #fff;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.01);
}


@keyframes spin {
    0% {
        transform: translate3d(0, -10%, 0)
    }

    50% {
        transform: translate3d(0, -15%, 0)
    }

    100% {
        transform: translate3d(0, -10%, 0)
    }
}


@keyframes pulse {
    5%,
    50% {
        transform: scale(1)
    }
    10% {
        transform: scale(.97)
    }
    15% {
        transform: scale(1.00)
    }
    20% {
        transform: scale(1.00) rotate(-1deg)
    }
    25% {
        transform: scale(1.00) rotate(1deg)
    }
    30% {
        transform: scale(1.00) rotate(-1deg)
    }
    35% {
        transform: scale(1.00) rotate(0deg)
    }
    40% {
        transform: scale(1.00) rotate(0)
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}


