:root {
    --bg-color: #050505;
    --card-bg: rgba(15, 15, 15, 0.7);
    --text-color: #ffffff;
    --accent-color: #7289da;
    --glass-border: rgba(255, 255, 255, 0.08);
}

/* Landing Page Specifics */
.landing-page {
    overflow-y: auto;
    height: auto;
    display: block;
}

.landing-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.hero {
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    background: #fff;
    color: #000;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: #fff;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    transition: background 0.2s ease;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 100px;
}

.feat-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 24px;
    text-align: left;
}

.feat-card i {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.feat-card h3 {
    margin-bottom: 15px;
}

.footer {
    padding: 80px 0 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

/* Keep Profile Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(10px) brightness(0.4);
    z-index: -1;
    transition: background-image 1s ease-in-out;
}

.container {
    width: 100%;
    max-width: 450px;
    padding: 20px;
    z-index: 1;
}

.card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 0 0 40px 0;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.8s ease-out;
    overflow: hidden;
}

#profile-banner {
    height: 120px;
    background-color: var(--accent-color);
    background-size: cover;
    background-position: center;
}

.profile-section {
    margin-bottom: 30px;
    padding: 0 30px;
    margin-top: -50px;
}

.avatar-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
}

#avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid var(--card-bg);
    object-fit: cover;
    background: var(--bg-color);
}

#status-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 4px solid var(--card-bg);
    background-color: #808080;
}

#about-me {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 12px;
    margin: 15px 0;
    text-align: left;
    white-space: pre-wrap;
    border: 1px solid var(--glass-border);
}

.links-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 30px;
}

.link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 14px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.link-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.02);
    border-color: var(--accent-color);
}

.link-btn i {
    font-size: 1.2rem;
}
