* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

@font-face {
    font-family: Metal;
    src: url(Font/SquadaOne-Regular.ttf);
}

@font-face {
    font-family: Hammer;
    src: url(Font/HammersmithOne-Regular.ttf);
}
body {
    min-height: 100vh;
    color: white;
    background:
        radial-gradient(circle at 20% 20%, rgba(120, 0, 255, 0.15), transparent 40%),
        radial-gradient(circle at 80% 10%, rgba(0, 180, 255, 0.15), transparent 45%),
        radial-gradient(circle at 50% 80%, rgba(255, 0, 150, 0.12), transparent 50%),
        linear-gradient(180deg, #050505, #000000);
}

header {
    height: 70px;
    display: flex;
    align-items: center;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

header img {
    height: 45px;
}

.header-logo {
    height: 45px;
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: translateY(-4px);
}


main {
    height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.logo-wrapper {
    position: relative;
    width: 380px; 
    height: 380px;
}

.logo-wrapper img {
    width: 300px;
    height: 250px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.circle {
    position: absolute;
    border-radius: 50%;
    border: 3px solid transparent;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle.one {
    width: 300px;
    height: 300px;
    border-top: 3px solid #00eaff;
    border-bottom: 3px solid #00eaff;
    animation: spin 12s linear infinite;
}


.circle.two {
    width: 360px;
    height: 360px;
    border-left: 3px solid #a855f7;
    border-right: 3px solid #a855f7;
    animation: spinReverse 20s linear infinite;
}

@keyframes spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes spinReverse {
    from { transform: translate(-50%, -50%) rotate(360deg); }
    to { transform: translate(-50%, -50%) rotate(0deg); }
}

.bg-animation {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.blob {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.7;
    animation: float 10s ease-in-out infinite;
}

.b1 {
    background: radial-gradient(circle, #7f00ff, transparent 60%);
    top: -150px;
    left: -150px;
}

.b2 {
    background: radial-gradient(circle, #00c6ff, transparent 60%);
    top: 20%;
    right: -200px;
}

.b3 {
    background: radial-gradient(circle, #ff0037, transparent 60%);
    bottom: -200px;
    left: 30%;
}

@keyframes float {
    0% { transform: translate(0,0); }
    50% { transform: translate(80px,-60px); }
    100% { transform: translate(0,0); }
}

header {
    justify-content: space-between;
}

.header-name {
    font-size: 24px;
    font-family: Hammer;
    font-weight: 700;
    background: linear-gradient(90deg, #00f2ff, #ff00c8, #00f2ff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: nameGradient 4s linear infinite;
}

@keyframes nameGradient {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.tagline {
    margin-top: 40px;
    font-family: Hammer;
    font-size: 16px;
    letter-spacing: 2px;
    opacity: 0.75;
    text-align: center;
}

.stars {
    margin-top: 25px;
    display: flex;
    gap: 8px;
    justify-content: center;
}

.stars span {
    font-size: 24px;
    color: rgb(190, 190, 189);
    opacity: 0.3;
    transform: scale(0.8);
}
.center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.img-tm {
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
  
    animation: floatLogo 3s ease-in-out infinite;
}

@keyframes floatLogo {
    0%   { transform: translate(-50%, -52%); } 
    50%  { transform: translate(-50%, -48%); } 
    100% { transform: translate(-50%, -52%); }
}

.socials {
    margin-top: 25px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.socials a {
    font-size: 24px;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
}

.socials a:hover {
    color: white;
    transform: translateY(-3px) scale(1.15);
    text-shadow: 0 0 15px rgba(255,255,255,0.4);
}

.socials a:hover .fa-instagram {
    color: #ff4ecd;
}
.socials a:hover .fa-github {
    color: #ffffff;
}
.socials a:hover .fa-discord {
    color: #5865f2;
}

.profile-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 999;
}


.profile-modal.active {
    opacity: 1;
    visibility: visible;
}


.profile-box {
    width: 90%;
    max-width: 500px;
    padding: 40px;
    border-radius: 20px;
    background: linear-gradient(145deg, #0f0f1a, #050505);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 0 40px rgba(0, 242, 255, 0.15);
    color: white;
    text-align: center;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}


.profile-modal.active .profile-box {
    transform: scale(1);
}


.profile-box h2 {
    margin-bottom: 20px;
    font-family: Hammer;
    background: linear-gradient(90deg,#00f2ff,#ff00c8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.profile-box p {
    opacity: 0.8;
    line-height: 1.8;
    font-family: Hammer;
}


.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 22px;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.2s;
}

.close-btn:hover {
    opacity: 1;
}

.discord-box {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    padding: 14px 28px;
    border-radius: 14px;
    background: linear-gradient(145deg, #0f0f1a, #050505);
    border: 1px solid rgba(88,101,242,0.4);
    color: #5865f2;
    font-size: 15px;
    letter-spacing: 1px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
    z-index: 999;
    box-shadow: 0 0 25px rgba(88,101,242,0.25);
}

.discord-box span{
    font-family: Hammer;
}
.discord-box.active {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}