body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #0d0d0d;
    color: white;
    text-align: center;
}
::-webkit-scrollbar {
    width: 12px; 
    height: 12px;
}

::-webkit-scrollbar-thumb {
    background-color: #000000; 
    border-radius: 6px;     
}

::-webkit-scrollbar-track {
    background-color: #000;  
    border-radius: 6px;
}

.navbar {
    display: flex;
    justify-content: center;
    background: linear-gradient(90deg, #5374FF, #FFFFFF);
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.navbar a {
    margin: 0 15px;
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-size: 18px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    transition: 0.3s;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
}
.navbar a:hover {
    background: rgba(255, 255, 255, 0.3);
}
.content {
    display: none;
    padding: 20px;
    text-align: center;
    animation: fadeIn 0.5s ease-in-out;
}
.active {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80vh;
}
.hero h1 {
    font-size: 60px;
    background: linear-gradient(90deg, #5374FF, #FFFFFF);
    background-clip: text;
    -webkit-background-clip: text;
     color: transparent;
    text-shadow: 0px 4px 20px #5374FF;
}
.section {
    padding: 40px;
    max-width: 600px;
    margin: auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.pricing-table {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.pricing-plan {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

#prices h1 {
font-size: 2.5rem;
position:absolute;
top: 10%;  
color: #ffffff;
}

.pricing-plan h2 {
    margin-bottom: 10px;
    color: #5374FF;
}
.pricing-plan p {
    margin-bottom: 20px;
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 20px;
}

.gallery img {
    border-radius: 10px;
    object-fit: contain;
    max-width: 300px;
    max-height: 250px;
    width: 100%; 
    height: auto; 
    transition: transform 0.3s;
    animation: fadeIn 0.5s ease-out forwards;
}

.gallery img:hover {
    transform: scale(1.1);
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}


.about-content {
    background: #2c2c2c;
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    margin: auto;
    text-align: center; 
    overflow-wrap: break-word; 
    justify-content: center;
    height: 80vh;

}


.about-content h1 {
    font-size: 28px;
    margin-bottom: 15px; 
    color: #5374FF;
    width: 100%; 
}

.about-content p {
    font-size: 16px;
    line-height: 1.6;
    margin: 10px 0;
    text-align: center; 
    width: 100%; 
    box-sizing: border-box;
    word-wrap: break-word; 
    color: #ffffff; 
}

.about-services {
    display: inline-block;
    text-align: left;
    margin-bottom: 20px;
    width: 100%; 
}

.about-services p {
    font-size: 14px;
    text-align: left; 
    margin-left: 20px; 
}

.about-discord-link {
    display: inline-block;
    background: #5865F2;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s ease;
    margin-top: 10px;
}

.about-discord-link:hover {
    background: #4752c4;
}


.content {
    display: none;
    padding: 20px;
    text-align: center;
    animation: fadeIn 0.5s ease-in-out;
}

.active {
    display: flex; 
    align-items: center;
    justify-content: center;
    height: 80vh;
}







/* 
copyright thing */

.footer {
    background: linear-gradient(90deg, #5374FF, #4B8DFF);
    color: white;
    padding: 1px;
    text-align: center;
    font-size: 16px;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    transition: background 0.3s ease;
}

.footer:hover {
    background: linear-gradient(90deg, #4B8DFF, #5374FF);
}

.footer p {
    margin: 5px 0;
    font-size: 16px;
    color: #222222;
}


