:root {
    /* Jonny Trader Colors */
    --primary: #ff5500;
    --primary-hover: #ff6a00;
    --black: #000000;
    --dark: #050505;
    --panel-bg: rgba(10, 10, 10, 0.8);
    --white: #ffffff;
    --gray: #888888;
    
    /* Fonts */
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
    background-image: radial-gradient(circle at 50% -20%, rgba(255, 85, 0, 0.15) 0%, var(--black) 60%);
}

/* --- Futuristic Background Effects --- */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

/* Tech Grid */
.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 85, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 85, 0, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    perspective: 500px;
    transform: scale(1.1);
    opacity: 0.6;
}

/* CRT Scanlines */
.grid-overlay::after {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    z-index: 2;
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
    animation: float 10s infinite alternate ease-in-out;
}

.glow-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -200px;
    left: -200px;
}

.glow-2 {
    width: 400px;
    height: 400px;
    background: #ff8c00;
    bottom: -150px;
    right: -150px;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 80px) scale(1.2); }
}

/* --- Main Layout --- */
.container {
    width: 100%;
    max-width: 600px;
    padding: 3.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    /* Slide entrance for the whole page */
    animation: slideInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* --- Header & Profile (Futuristic) --- */
.profile-header {
    text-align: center;
    margin-bottom: 2.5rem;
    width: 100%;
}

.profile-img-container {
    width: 130px;
    height: 130px;
    margin: 0 auto 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Rotating Tech Border */
.profile-img-container::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid rgba(255, 85, 0, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary);
    border-bottom-color: var(--primary);
    animation: spin 6s linear infinite;
}

.profile-img-container::after {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border: 1px dashed rgba(255, 85, 0, 0.2);
    border-radius: 50%;
    animation: spin-reverse 15s linear infinite;
}

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

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

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Assuming the logo might be square/transparent */
    border-radius: 50%;
    background-color: var(--black);
    padding: 10px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 30px rgba(255, 85, 0, 0.2);
}

.profile-name {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    color: var(--white);
    position: relative;
    display: inline-block;
    text-shadow: 0 0 15px rgba(255, 85, 0, 0.4);
}

/* Removed Glitch Animation for cleaner text */

.profile-bio {
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.social-icon {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.4rem;
    transition: all 0.3s;
    position: relative;
}

.social-icon:hover {
    color: var(--primary);
    transform: translateY(-3px) scale(1.1);
    filter: drop-shadow(0 0 10px rgba(255, 85, 0, 0.8));
}

/* --- Links Container (Futuristic) --- */
.links-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.link-card {
    display: flex;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: var(--panel-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 3px solid rgba(255, 85, 0, 0.5);
    /* Cyberpunk cut corner effect */
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

/* Hologram Scanning Line on Hover */
.link-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 85, 0, 0.2), transparent);
    transform: skewX(-20deg);
    transition: 0.5s;
}

.link-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 85, 0, 0.05);
    border-color: rgba(255, 85, 0, 0.3);
    border-left: 3px solid var(--primary);
    box-shadow: -5px 0 20px rgba(255, 85, 0, 0.2);
}

.link-card:hover::after {
    left: 200%;
    transition: 0.7s;
}

.link-card i {
    font-size: 1.4rem;
    width: 35px;
    color: var(--gray);
    transition: all 0.3s;
    text-align: left;
}

.link-card:hover i {
    color: var(--primary);
    transform: scale(1.1);
    text-shadow: 0 0 10px var(--primary);
}

.link-card span {
    flex: 1;
    text-align: center;
    padding-right: 35px; /* offset for icon */
    letter-spacing: 0.03em;
    font-size: 1.05rem;
    font-weight: 500;
}

/* Highlighted Link (e.g. The Platform) */
.link-card.highlight {
    background: linear-gradient(90deg, rgba(255, 85, 0, 0.1) 0%, rgba(10, 10, 10, 0.8) 100%);
    border-left: 4px solid var(--primary);
    box-shadow: inset 0 0 20px rgba(255, 85, 0, 0.1);
}

.link-card.highlight i {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
}

.link-card.highlight span {
    color: var(--primary);
}

.link-card.highlight:hover {
    background: linear-gradient(90deg, rgba(255, 85, 0, 0.2) 0%, rgba(255, 85, 0, 0.05) 100%);
    box-shadow: inset 0 0 20px rgba(255, 85, 0, 0.2), 0 0 15px rgba(255, 85, 0, 0.3);
}

/* --- Footer --- */
footer {
    margin-top: 4rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 1px;
    background: rgba(255, 85, 0, 0.3);
}

/* --- Animations --- */
@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(80px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.links-container .link-card {
    opacity: 0;
    animation: slideInRight 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.links-container .link-card:nth-child(1) { animation-delay: 0.3s; }
.links-container .link-card:nth-child(2) { animation-delay: 0.4s; }
.links-container .link-card:nth-child(3) { animation-delay: 0.5s; }
.links-container .link-card:nth-child(4) { animation-delay: 0.6s; }
.links-container .link-card:nth-child(5) { animation-delay: 0.7s; }
