*{margin:0;padding:0;box-sizing:border-box;}

body{
    background:#06080A;
    font-family:'Inter',sans-serif;
    color:white;
}

#particles-js{
    position:fixed;
    width:100%;
    height:100%;
    z-index:0;
}

.container{
    position:relative;
    z-index:2;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
}

.card{
    background:rgba(255,255,255,0.04);
    backdrop-filter:blur(20px);
    padding:45px 40px;
    border-radius:30px;
    text-align:center;
    width:380px;
    box-shadow:0 0 80px rgba(0,0,0,0.8);
}

.logo img{
    width:80px;
    margin-bottom:20px;
    animation:float 3s ease-in-out infinite;
}

@keyframes float{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-10px);}
}

.subtitle{
    color:#E87848;
    letter-spacing:3px;
    text-transform:uppercase;
    font-size:12px;
    margin-bottom:12px;
}

h1{margin-bottom:18px;font-size:28px;}

.description{
    color:rgba(255,255,255,0.65);
    font-size:14px;
    margin-bottom:30px;
}

.button{
    display:block;
    padding:15px;
    border-radius:14px;
    text-decoration:none;
    color:white;
    margin-bottom:30px;
    transition:0.3s;
    font-weight:600;
    background:linear-gradient(45deg,#5865F2,#7289DA);
}

.button:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 30px rgba(0,0,0,0.6);
}

.socials{
    display:flex;
    justify-content:center;
    gap:12px;
}

.socials a{
    width:38px;
    aspect-ratio:1/1;
    border-radius:50%;
    background:rgba(255,255,255,0.06);
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:15px;
    transition:all 0.3s ease;
}

.socials a:hover{
    transform:translateY(-4px) scale(1.1);
    box-shadow:0 0 15px rgba(90,66,237,0.6);
}

.instagram:hover{background:#E1306C;}
.tiktok:hover{background:#000;}
.youtube:hover{background:#FF0000;}
.twitter:hover{background:#1DA1F2;}
.twitch:hover{background:#9146FF;}
.kick:hover{background:#53FC18;color:#000;}


.card {
    position: relative;
}

.theme-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.card.light-mode {
    background: #ffffff !important;
    color: #111 !important;
}

.card.light-mode .subtitle,
.card.light-mode h1,
.card.light-mode .description {
    color: #111 !important;
}

.card.light-mode .theme-toggle {
    color: #111;
}