@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;600;800&display=swap');

:root {
    --primary: #00ddff;
    --primary-glow: rgba(0, 221, 255, 0.4);
    --bg-dark: #050505;
    --bg-card: rgba(255, 255, 255, 0.03);
    --text-main: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.6);
    --grid-color: rgba(255, 255, 255, 0.03);
    --accent-gradient: linear-gradient(135deg, #00ddff 0%, #75edff 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Premium Background */
.bg-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 221, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(117, 237, 255, 0.05) 0%, transparent 40%),
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 60px 60px, 60px 60px;
}

.bg-blur {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.1;
    border-radius: 50%;
    animation: pulse 10s infinite alternate;
}

@keyframes pulse {
    from { transform: translate(-10%, -10%) scale(1); }
    to { transform: translate(10%, 10%) scale(1.2); }
}

/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 8%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 10px var(--primary-glow)) brightness(1.2);
}

.logo span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(10, 10, 12, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* Live Tag & Pulse */
.live-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 0, 0, 0.15);
    color: #ff4d4d;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 77, 77, 0.3);
    backdrop-filter: blur(10px);
}

.pulse {
    width: 8px;
    height: 8px;
    background: #ff4d4d;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.7);
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 77, 77, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 77, 77, 0); }
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-main);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section 2.0 */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 10%;
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 10;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 25px;
    letter-spacing: -4px;
    background: linear-gradient(to bottom, #fff 50%, rgba(255,255,255,0.2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.5s ease;
}

.hero-title span {
    margin-left: 15px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px var(--primary-glow));
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-dim);
    max-width: 800px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
    font-weight: 500;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Premium Buttons */
.btn-primary {
    background: var(--accent-gradient);
    color: #000;
    padding: 18px 40px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(0, 221, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 221, 255, 0.5);
    filter: brightness(1.1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    padding: 18px 40px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Polish */
.section {
    padding: 120px 8%;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: -1px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 221, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card i {
    font-size: 2.5rem;
    margin-bottom: 25px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card p {
    color: var(--text-dim);
}

/* Premium About Section */
.about-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.category-tag {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    display: block;
}

.about-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    white-space: nowrap;
}

.about-title span {
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary-glow);
}

.about-desc {
    font-size: 1.1rem;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 35px;
}

.about-desc b {
    color: #fff;
}

.experience-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px 30px;
    border-radius: 20px;
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.exp-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.exp-text {
    font-size: 0.9rem;
    color: var(--text-dim);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Discord Profile Card - Premium Refined */
.discord-profile-card {
    background: linear-gradient(180deg, #dae5f1 0%, #e2ebf5 100%);
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.15),
        0 0 20px rgba(255, 255, 255, 0.5) inset;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.discord-profile-card:hover {
    transform: translateY(-5px);
}

.profile-banner {
    height: 140px;
    background: #000;
    overflow: hidden;
    position: relative;
}

.gif-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.profile-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-header {
    padding: 0 20px;
    margin-top: -65px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 15px;
    position: relative;
    z-index: 5;
}

.profile-avatar {
    width: 110px;
    height: 110px;
    background: #dae5f1;
    border-radius: 50%;
    padding: 6px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
}

.status-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    position: absolute;
    bottom: 5px;
    right: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 6px solid #dae5f1;
}

.status-icon.idle {
    background: #111214;
    color: #f0b232;
    font-size: 0.8rem;
}

.status-bubble {
    background: #ebf2f9;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 0.75rem;
    color: #313338;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    font-weight: 500;
    width: fit-content;
    white-space: nowrap;
    max-width: 220px;
    cursor: pointer;
    position: relative;
    border: none;
}

.status-text {
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Discord Bubble Tail */
.status-bubble::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 10px;
    width: 10px;
    height: 10px;
    background: #ebf2f9;
    transform: rotate(45deg);
    border-radius: 2px;
}

.status-bubble:hover {
    width: 260px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transform: rotateX(-5deg) translateY(5px); /* This creates the tilt down effect */
}

.status-bubble img {
    flex-shrink: 0;
    width: 18px !important;
    height: 18px !important;
    margin-top: 1px;
    position: relative;
    z-index: 2;
}

.status-text-container {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.status-short {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: opacity 0.2s;
}

.status-full {
    display: none;
}

.status-bubble:hover {
    width: 280px;
    height: auto;
    min-height: 80px;
    padding: 14px 20px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.18);
    transform: scale(1.02);
}

.status-bubble:hover .status-short {
    display: none;
}

.status-bubble:hover .status-full {
    display: block;
    opacity: 1;
}

.profile-body {
    padding: 15px 20px 20px 25px;
}

.profile-names {
    margin-bottom: 20px;
}

.display-name {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #4b89dc;
    margin-bottom: 4px;
    text-shadow: 0 2px 10px rgba(75, 137, 220, 0.2);
}

.user-tag {
    font-size: 0.9rem;
    color: #5c6069;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.2px;
}

.about-icon {
    color: #2b2d31;
    font-weight: 800;
    margin-left: 5px;
}

.profile-badges {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.4);
    padding: 12px 20px;
    border-radius: 14px;
    width: fit-content;
    border: 1px solid rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.p-badge {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: help;
}

.p-badge i {
    font-size: 1.1rem;
    transition: transform 0.2s;
}

.badge-name {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    background: #111;
    color: #fff;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    margin-bottom: 10px;
    white-space: nowrap;
    z-index: 100;
}

.badge-name::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #111;
}

.p-badge:hover i {
    transform: translateY(-3px) scale(1.1);
}

.p-badge:hover .badge-name {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

.p-badge.react { color: #1c75bc; }
.p-badge.lua { color: #000080; }
.p-badge.js { color: #8c7e00; }
.p-badge.sql { color: #00758f; }

.profile-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: linear-gradient(135deg, #4b89dc 0%, #357abd 100%);
    color: #fff;
    text-decoration: none;
    padding: 16px;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(75, 137, 220, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-action-btn:hover {
    background: linear-gradient(135deg, #5c98d6 0%, #4b89dc 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 25px rgba(75, 137, 220, 0.4);
}

@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .experience-badge { margin: 0 auto; }
}

.showcase-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
}

.discord-style {
    max-width: 600px;
    width: 100%;
    padding: 0 !important;
    overflow: hidden;
    background: rgba(10, 10, 15, 0.7) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 221, 255, 0.1) !important;
    border-radius: 30px !important;
    text-align: left !important;
    box-shadow: 0 25px 50px rgba(0,0,0,0.6), 0 0 30px rgba(0, 221, 255, 0.05) !important;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

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

.project-banner {
    height: 250px;
    background-image: url('assets/paradiserp_zapro.png');
    background-size: cover;
    background-position: center;
    width: 100%;
    position: relative;
    transition: transform 0.5s ease;
}

.project-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #2b2d31, transparent);
}

.project-content-wrapper {
    padding: 20px 35px 35px 35px;
    position: relative;
}

.discord-style .project-img {
    width: 110px;
    height: 110px;
    margin-top: -55px;
    margin-bottom: 20px;
    border-radius: 30px;
    background: #0a0a0f;
    border: 4px solid rgba(0, 221, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2;
}

.discord-style .project-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.discord-style h3 {
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    margin-bottom: 10px !important;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff !important;
    text-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.badge {
    color: #00ddff;
    font-size: 1.1rem;
    filter: drop-shadow(0 0 5px var(--primary-glow));
}

.project-stats-discord {
    display: flex;
    gap: 20px;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.03);
    width: fit-content;
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.05);
}

.stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #444;
}

.dot.online {
    background: #23a55a;
    box-shadow: 0 0 15px rgba(35, 165, 90, 0.8);
}

.project-description-discord {
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 100%;
}

.founded {
    color: rgba(255,255,255,0.3);
    font-size: 0.85rem;
    margin-bottom: 25px;
    font-style: italic;
}

.discord-style .project-btn {
    width: 100%;
    justify-content: center;
    background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
    border-radius: 15px;
    padding: 18px;
    font-size: 1.1rem;
    text-decoration: none;
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(88, 101, 242, 0.3);
    border: 1px solid rgba(255,255,255,0.1);
}

.discord-style .project-btn:hover {
    background: linear-gradient(135deg, #4752c4 0%, #3a45b1 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(88, 101, 242, 0.5);
}


/* Footer */
footer {
    padding: 50px 8%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* Utils */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--text-dim);
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 3.5rem; }
}
