body {
	background: radial-gradient(circle at top center, #0d0b28, #191828, #201e33, #433269, #000);
    color: #fff;
    text-align: center;
    font-family: Arial, sans-serif;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 320px;
    margin-top: -30px; 
}

.logo-container {
    position: relative;
    display: inline-block;
}

.social-icons {
    position: absolute;
	left:34%;
    top: 85%; 
    transform: translateY(-50%);
    display: flex; 
    gap: 10px; 
}

.icon-container {
    width: 55px; 
    height: 55px;
    border: 2px solid black;
    border-radius: 50%;
    display: flex; 
    justify-content: center;
    align-items: center; 
	opacity: 0.4;
}

.icon {
    width: 45px; 
    height: auto;
    opacity: 0.6;
}
.icon-container:hover{opacity:1;}
.icon:hover{opacity:1;}

.image-links {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 20px; 
}

.image-wrapper {
    position: relative;
    display: flex; 
    justify-content: center;
    align-items: center;
    width: 280px;
    height: 420px;
}

.hover-text {
    position: absolute;
    top: 50%;
    left: 50%;
	width: 240px;
    transform: translate(-50%, -50%); 
    background: rgba(200, 0, 60, 0.8); 
    color: white;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
    opacity: 0; 
    transition: opacity 0.3s ease-in-out;
}

.image-wrapper:hover .hover-text {
    opacity: 1;
}

.lazy-load {
    display: none;
}

.image-links a img {
    width: 280px;
    height: 420px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.image-links a:hover img {
    transform: perspective(800px) rotateX(var(--rotateX)) rotateY(var(--rotateY)) scale(1.2);
    box-shadow: 0px 15px 30px rgba(200, 0, 60, 0.8);
}

.image-links a img:hover {
    transform: perspective(800px) rotateX(var(--rotateX)) rotateY(var(--rotateY)) scale(1.2);
	border: none;
	
}

.image-links a img {
    transform-origin: center;
    transition: transform 0.3s ease;
}

.image-links a {
    position: relative;
}

.image-links a img {
    --rotateX: 0deg;
    --rotateY: 0deg;
}

.welcome-container {
    width: 95vw; 
    height: auto; 
    background-color: rgba(24,24,24,0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px;
    border-radius: 5px;
	margin: 0 0 20px 0;
}

.welcome-container h1, .welcome-container h3 {
    display: block;
}

.welcome-container h1 {
    margin-bottom: 10px;
}

.welcome-container h3 {
    margin-top: 5px;
    color: #ccc;
}

.welcome-text {
    font-size: 24px;
    font-weight: bold;
    color: rgb(200, 0, 60);
    text-align: center;
}

.footer {
    width: 95vw; /
    height: auto; 
    background-color: #181818;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 20px;
    border-radius: 5px; 
	margin: 50px auto 20px auto;
}

.footer-section {
    width: 25%; 
    text-align: center;
}

.links ul {
    list-style: none;
    padding: 0;
}

.links ul li {
    margin: 5px 0;
}

.links a {
    color: #fff;
    text-decoration: none;
}

.links a:visited {
    color: #fff;
    text-decoration: none;
}

.links a:hover {
    color: rgb(200, 0, 60);
}

.side-panel {
    position: fixed;
    top: 0;
    left: -400px;
    width: 350px;
    height: 100vh;
    background: #181818;
    box-shadow: 5px 0px 10px rgba(0, 0, 0, 0.5);
    transition: left 0.4s ease-in-out;
    padding: 10px;
}

.side-panel-right {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    height: 100vh;
    background: #181818;
    box-shadow: 5px 0px 10px rgba(0, 0, 0, 0.5);
    transition: right 0.4s ease-in-out;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
        }
	
}

.iframe-content {
    width: 100%;
    height: 100%;
    border: none;
}

.toggle-button {
    position: fixed;
    top: 78%;
    left: 0px;
    transform: translateY(-50%);
    padding: 10px 15px;
    background: rgb(200, 0, 60);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    writing-mode: vertical-rl;
    text-orientation: upright; 
    transition: opacity 0.3s ease-in-out; 
}

.toggle-button-right {
    position: fixed;
    top: 20%;
    right: 0;
    transform: translateY(-50%);
    padding: 10px 15px;
    background: rgb(200, 0, 60);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    writing-mode: vertical-rl; 
    text-orientation: upright; 
    transition: opacity 0.3s ease-in-out; 
}

.toggle-button.panel-open {
    opacity: 0.3;
}

.toggle-button.panel-open:hover {
    opacity: 1;
}

.toggle-button:hover {
    background: rgb(220, 20, 80);
}

.toggle-button-right.panel-open {
    opacity: 0.3;
}

.toggle-button-right.panel-open:hover {
    opacity: 1;
}

.toggle-button-right:hover {
    background: rgb(220, 20, 80);
}

.social-links a img {
    width: 30px;
    margin: 0 10px;
    opacity: 0.7;
}

.social-links a img:hover {
    opacity: 1;
}

#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

.server-divider{
border-top:2px solid rgba(255,255,255,0.2);
border-bottom:2px solid rgba(0,0,0,0.3);
}

.loader {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid rgb(200, 0, 60);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    position: absolute;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.lazy-load {
    display: none;
}

.server-button {
    display: inline-block;
    margin: 10px 5px; 
    padding: 8px 16px;
    background-color: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
	vertical-align: middle;
    width: auto; 
}
.server-button:hover {opacity: 0.9;}
.server-button-blue:hover {opacity: 0.9;}
.server-button-blue {
    display: inline-block; 
    margin: 10px 5px; 
    padding: 8px 16px;
    background-color: #1a70f2;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
	vertical-align: middle;
    width: auto; 
}
.g-icon{
    display: inline-block; 
	width:34px;
	height:34px;
	vertical-align: middle;
}

a:visited {
  color: white;
}

@media screen and (max-width: 768px) {
    .logo {
        width: 100px; 
    }

    .welcome-text {
        font-size: 18px;
        margin-top: 5px;
    }

    .image-links {
        flex-direction: column;
        align-items: center;
    }

    .image-links a img {
        width: 60%; 
        height: auto;
    }

    footer {
        padding: 15px;
    }

    .social-links {
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    .social-links a img {
        width: 25px;
    }
}