:root {
    --primary: #000000;
    /* Black */
    --secondary: #1a1a1a;
    /* Dark gray */
    --accent: #ff0000;
    /* Bright red */
    --gold: #ffffff;
    /* White (replacing gold) */
    --text: #ffffff;
    /* White */
    --dark-text: #cccccc;
    /* Light gray */
    --success: #00ff00;
    /* Green */
    --danger: #ff3333;
    /* Brighter red */
    --highlight: #990000;
    /* Dark red */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    background: radial-gradient(circle at center, var(--primary), var(--secondary));
    color: var(--text);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Oxanium', sans-serif;
    overflow: hidden;
}
.video_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover; /* ვიდეო სრულად იხურება ფონის მსგავსად */
  z-index: -2;
}
/* Login Container */
.login-container {
    width: 100%;
    height: 100%;
    padding: 50px;
    /* display: flex; */
    /* flex-direction: column;
    justify-content: center; */
    background: rgba(0, 0, 0, 0.582);
    /* backdrop-filter: blur(10px); */
    z-index: 10;
    border: 1px solid rgba(255, 0, 0, 0.2);
}
.login_section{
    box-shadow: rgb(0, 0, 0) 0px 20px 30px -10px;
    border: 1px solid rgba(255, 0, 0, 0.2);
    margin-top: auto;
    margin-bottom: auto;
    height: 90%;
    padding: 1rem;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.336);
    backdrop-filter: blur(10px);
    display: flex;
    position: absolute;
    flex-direction: column;
    left: 50px;
    width: 500px;
}
.csperson {
    transform: translate(-50%);
    left: 50%;
    bottom: 0;
    position: absolute;
    height: 300px;
    user-select: none;
}
.login_person{
    height: 330px;
    width: 330px;
}
.logo {
    text-align: center;
    margin-bottom: 40px;
}

.logo h1 {
    font-family: 'MedievalSharp', cursive;
    font-size: 3rem;
    background: linear-gradient(to right, var(--gold), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(255, 0, 0, 0.5);
}

.logo p {
    color: var(--dark-text);
    font-size: 1rem;
    letter-spacing: 1px;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 3px solid var(--accent);
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 0, 0, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: rotate(30deg) translate(-30%, -30%);
    }

    100% {
        transform: rotate(30deg) translate(30%, 30%);
    }
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--accent);
    letter-spacing: 1px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    background: rgba(30, 30, 30, 0.7);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 8px;
    color: var(--text);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Oxanium', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.3);
    background: rgba(40, 40, 40, 0.9);
}

.btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(to right, var(--accent), var(--highlight));
    border: none;
    border-radius: 8px;
    color: var(--text);
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Oxanium', sans-serif;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: 0.5s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.4);
}

.btn:hover::before {
    left: 100%;
}

.auth-code {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
}

.auth-code input {
    width: 60px;
    height: 80px;
    text-align: center;
    font-size: 2rem;
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 0, 0, 0.4);
    border-radius: 8px;
    color: var(--text);
    font-family: 'Oxanium', sans-serif;
    transition: all 0.3s ease;
}

.auth-code input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.4);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    font-size: 0.85rem;
}

.footer-links a {
    color: var(--dark-text);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-links a:hover::after {
    width: 100%;
}

/* Premium 3D Items Section */
.items-section {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 0, 0, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 30%);
}

.floating-items {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.skin-container {
    position: absolute;
    width: 220px;
    height: 220px;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
    animation: float 8s infinite ease-in-out;
}

.skin-card {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: all 0.5s ease;
}

.game-skin {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.7));
    backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
    transform-style: preserve-3d;
}

.skin-front {
    transform: rotateY(0deg);
    z-index: 2;
    background-color: rgba(20, 20, 20, 0.9);
    border: 2px solid var(--accent);
    display: flex;
    justify-content: center;
    align-items: center;
}

.skin-front::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 40%, rgba(255, 0, 0, 0.1) 100%);
    z-index: 1;
}

.skin-img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.5));
    z-index: 2;
}

.skin-back {
    transform: rotateY(180deg);
    background-color: rgba(10, 10, 10, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
    text-align: center;
    border: 2px solid var(--accent);
}

.skin-price {
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.skin-name {
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 15px;
}

.skin-stattrak {
    color: var(--accent);
    font-size: 0.8rem;
    margin-bottom: 5px;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
}

.skin-wear {
    font-size: 0.7rem;
    color: var(--dark-text);
    background: rgba(255, 0, 0, 0.1);
    padding: 3px 10px;
    border-radius: 10px;
}

.skin-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.skin-2 {
    top: 15%;
    right: 20%;
    animation-delay: 1s;
}

.skin-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.skin-4 {
    bottom: 15%;
    right: 15%;
    animation-delay: 3s;
}

.currency-badge {
    position: absolute;
    font-size: 1rem;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2), rgba(255, 0, 0, 0.4));
    border: 1px solid rgba(255, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 5;
    animation: pulse 2s infinite alternate;
    color: var(--gold);
}

.badge-1 {
    top: 10%;
    right: 10%;
}

.badge-2 {
    bottom: 10%;
    left: 10%;
}

.badge-3 {
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotateY(0deg) rotateX(0deg);
    }

    50% {
        transform: translateY(-20px) rotateY(10deg) rotateX(5deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.05);
        opacity: 1;
    }
}

/* Particle effects */
.particle {
    position: absolute;
    background-color: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    body {
        flex-direction: column;
    }

    .items-section {
        height: 400px;
    }

    .skin-container {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .login-container {
        padding: 30px;
    }

    .logo h1 {
        font-size: 2.2rem;
    }

    .auth-code input {
        width: 45px;
        height: 60px;
        font-size: 1.5rem;
    }

    .skin-container {
        width: 140px;
        height: 140px;
    }

    .currency-badge {
        font-size: 0.8rem;
        padding: 3px 8px;
    }
}





































































/* From Uiverse.io by satyamchaudharydev */ 
/* === removing default button style ===*/
.teamname {
  margin: 0;
  height: auto;
  background: transparent;
  padding: 0;
  border: none;
  cursor: pointer;
}

/* button styling */
.teamname {
  --border-right: 6px;
  --text-stroke-color: rgba(255,255,255,0.6);
  --animation-color: var(--highlight);
  --fs-size: 2em;
  letter-spacing: 3px;
  text-decoration: none;
  font-size: var(--fs-size);
  font-family: "Arial";
  position: relative;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px var(--danger);
}
/* this is the text, when you hover on button */
.hover-text {
  position: absolute;
  box-sizing: border-box;
  content: attr(data-text);
  color: var(--accent);
  width: 0%;
  inset: 0;
  border-right: var(--primary) solid var(--accent);
  overflow: hidden;
  transition: 0.5s;
  -webkit-text-stroke: 1px var(--accent);
}
/* hover */
.teamname:hover .hover-text {
  width: 100%;
  filter: drop-shadow(0 0 23px var(--accent))
}