@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #0B1020;
    color: #FFFFFF;
    line-height: 1.6;
}

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

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: transparent;
    transition: background-color 0.3s ease;
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background-color: rgba(11, 16, 32, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cinzel', serif;
    font-weight: 800;
    font-size: 18px;
    color: #D4AF37;
    letter-spacing: 2px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar-logo:hover {
    color: #FFD875;
    text-decoration: none;
}

.logo-w-small {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

.logo-w-large {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.4));
}

.hero-logo {
    position: relative;
}

.hero-logo img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.6));
    animation: bounce 2s infinite;
}

.hero-logo::before {
    content: '✨';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 40px;
    animation: sparkle 2s infinite;
}

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

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: translateX(-50%) scale(0.8);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #D9D9D9;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.nav-link:hover {
    color: #D4AF37;
}

.nav-link.active {
    color: #0B1020;
    font-weight: 700;
    background-color: #D4AF37;
    padding: 8px 18px;
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* Buttons */
.btn {
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.btn-primary {
    background-color: #D4AF37;
    color: #0B1020;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background-color: #E0C547;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #D4AF37;
    border: 2px solid #D4AF37;
    box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.1);
}

.btn-secondary:hover {
    background-color: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3), inset 0 0 20px rgba(212, 175, 55, 0.1);
}

.btn-small {
    padding: 10px 20px;
    font-size: 12px;
}

.btn-large {
    padding: 16px 48px;
    font-size: 16px;
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 80px;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-logo {
    margin-bottom: 30px;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 80px;
    font-weight: 900;
    color: #D4AF37;
    margin-bottom: 12px;
    letter-spacing: 4px;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.hero-tagline {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtext {
    font-size: 18px;
    color: #D9D9D9;
    margin-bottom: 48px;
    line-height: 1.6;
}

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

.hero-buttons .btn {
    min-width: 250px;
}

/* Features Strip */
.features-strip {
    padding: 80px 20px;
    background-color: #0B1020;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
    align-items: stretch;
    margin-top: 40px;
}

.feature-card {
    padding: 30px;
    background-color: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    max-width: 260px;
    width: 100%;
    margin: 0;
}

.feature-card:hover {
    background-color: rgba(212, 175, 55, 0.1);
    border-color: #D4AF37;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.1);
}

.feature-card h3 {
    color: #D4AF37;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.feature-card ul {
    list-style: none;
    padding: 0;
}

.feature-card li {
    color: #D9D9D9;
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.feature-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-weight: bold;
}

/* How It Works */
.how-it-works {
    padding: 80px 20px;
    background-color: #0B1020;
}

.how-it-works h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    color: #D4AF37;
    margin-bottom: 60px;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.timeline-item {
    text-align: center;
    padding: 30px;
    background-color: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    background-color: rgba(212, 175, 55, 0.1);
    border-color: #D4AF37;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4AF37, #E0C547);
    color: #0B1020;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    margin: 0 auto 20px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.timeline-item h4 {
    color: #D4AF37;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-item p {
    color: #D9D9D9;
    font-size: 14px;
}

/* Who For Section */
.who-for {
    padding: 80px 20px;
    background-color: #0B1020;
}

.who-for h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    color: #D4AF37;
    margin-bottom: 60px;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.who-card {
    padding: 40px;
    background-color: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.who-card:hover {
    background-color: rgba(212, 175, 55, 0.1);
    border-color: #D4AF37;
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.15);
}

.who-card h4 {
    color: #D4AF37;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.who-card p {
    color: #D9D9D9;
    font-size: 14px;
    line-height: 1.6;
}

/* Preview Section */
.preview {
    padding: 80px 20px;
    background-color: #0B1020;
}

.preview h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    color: #D4AF37;
    margin-bottom: 60px;
}

.preview-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.talent-card {
    border: 1px solid #D4AF37;
    border-radius: 16px;
    padding: 40px;
    background-color: rgba(11, 16, 32, 0.9);
    text-align: center;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.1);
}

.talent-card .avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #D4AF37 0%, #E0C547 50%, #B8952F 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.talent-card h3 {
    color: #D4AF37;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 8px;
}

.talent-card .role {
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.talent-card .location {
    font-size: 14px;
    color: #D9D9D9;
    margin-bottom: 20px;
}

.talent-card .skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.talent-card .skill-tag {
    padding: 8px 14px;
    font-size: 12px;
}

.preview-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.link-preview {
    border: 1.5px solid #D4AF37;
    border-radius: 12px;
    padding: 25px;
    background-color: rgba(11, 16, 32, 0.8);
    text-align: center;
    transition: all 0.3s ease;
}

.link-preview:hover {
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
    transform: translateY(-8px);
}

.link-preview .preview-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.link-preview h5 {
    color: #D4AF37;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.link-preview p {
    color: #D9D9D9;
    font-size: 13px;
    line-height: 1.5;
}

/* CTA Section */
.cta {
    position: relative;
    padding: 100px 20px;
    text-align: center;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.cta h2 {
    font-size: 48px;
    font-weight: 900;
    color: #D4AF37;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta p {
    font-size: 18px;
    color: #D9D9D9;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.cta .btn-primary {
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    padding: 40px 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    background-color: rgba(11, 16, 32, 0.5);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #D4AF37;
    font-weight: 800;
    font-size: 16px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #D9D9D9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #D4AF37;
}

.footer-text {
    text-align: center;
    color: #999999;
    font-size: 12px;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

label {
    color: #D4AF37;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

input,
textarea,
select {
    background-color: rgba(11, 16, 32, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    color: #FFFFFF;
    padding: 12px 14px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
}

input::placeholder,
textarea::placeholder {
    color: rgba(217, 217, 217, 0.5);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #D4AF37;
    background-color: rgba(11, 16, 32, 0.95);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23D4AF37' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 30px;
}

.form-helper {
    color: #999999;
    font-size: 12px;
    margin-top: 4px;
}

.form-link {
    text-align: center;
    font-size: 13px;
    color: #D9D9D9;
    margin-top: 15px;
}

.form-link a {
    color: #D4AF37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.form-link a:hover {
    color: #E0C547;
    text-decoration: underline;
}

/* Auth Pages - Register & Login */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.auth-card {
    border: 1px solid #D4AF37;
    border-radius: 12px;
    padding: 50px 40px;
    background-color: rgba(11, 16, 32, 0.9);
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.1);
    max-width: 450px;
    width: 100%;
}

.auth-card h1 {
    color: #D4AF37;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 12px;
    text-align: center;
}

.auth-card .subtitle {
    color: #D9D9D9;
    font-size: 16px;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.5;
}

.auth-card .btn-primary {
    width: 100%;
}

/* Profile Edit Page */
.profile-edit-container {
    padding: 40px 20px 80px;
}

.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.edit-card {
    border: 1px solid #D4AF37;
    border-radius: 12px;
    padding: 30px;
    background-color: rgba(11, 16, 32, 0.9);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.05);
}

.edit-card h2 {
    color: #D4AF37;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 8px;
}

.edit-card .subtitle {
    color: #999999;
    font-size: 13px;
    margin-bottom: 25px;
}

.avatar-change {
    text-align: center;
    margin-bottom: 30px;
}

.avatar-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #D4AF37 0%, #E0C547 50%, #B8952F 100%);
    border-radius: 50%;
    margin: 0 auto 15px;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.avatar-change .btn-secondary {
    font-size: 12px;
    padding: 8px 16px;
}

.avatar-large {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.3);
    margin: 0 auto 15px;
}

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

.skills-display {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.skill-tag {
    display: inline-block;
    padding: 10px 18px;
    background-color: rgba(212, 175, 55, 0.15);
    border: 1.5px solid #D4AF37;
    border-radius: 24px;
    color: #D4AF37;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.link-form-row {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr auto;
    gap: 10px;
    margin-bottom: 15px;
    align-items: flex-end;
}

.link-form-row .form-group {
    margin-bottom: 0;
}

.link-form-row input,
.link-form-row select {
    margin-bottom: 0;
}

.link-form-row .btn {
    width: auto;
    padding: 12px 20px;
    margin: 0;
}

.link-preview {
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 15px;
    background-color: rgba(212, 175, 55, 0.05);
    margin-bottom: 10px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.link-preview-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.link-preview-content h5 {
    color: #D4AF37;
    font-size: 14px;
    margin-bottom: 2px;
}

.link-preview-content p {
    color: #999999;
    font-size: 12px;
    margin-bottom: 8px;
}

.profile-edit-buttons {
    text-align: center;
    margin-top: 40px;
}

.profile-edit-buttons .btn-primary {
    max-width: 300px;
    margin: 0 auto;
}

/* Profile Header Section */
.profile-header {
    padding: 80px 20px 60px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.08) 0%, transparent 100%);
}

.profile-card {
    border: 1px solid #D4AF37;
    border-radius: 16px;
    padding: 60px 40px;
    background-color: rgba(11, 16, 32, 0.8);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.1);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.avatar-container {
    margin-bottom: 30px;
}

.avatar {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #D4AF37 0%, #E0C547 50%, #B8952F 100%);
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
}

.profile-name {
    font-size: 42px;
    font-weight: 900;
    color: #D4AF37;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.profile-headline {
    font-size: 24px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.profile-location {
    font-size: 16px;
    color: #D9D9D9;
    margin-bottom: 30px;
}

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

/* Stats Bar */
.stats-bar {
    padding: 40px 20px;
    background-color: #0B1020;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 32px;
    font-weight: 900;
    color: #D4AF37;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #D9D9D9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Portfolio Section */
.portfolio {
    padding: 80px 20px;
    background-color: #0B1020;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    color: #D4AF37;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

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

.portfolio-card {
    border: 1px solid #D4AF37;
    border-radius: 12px;
    overflow: hidden;
    background-color: rgba(11, 16, 32, 0.9);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.05);
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
    transform: translateY(-8px);
    border-color: #E0C547;
}

.portfolio-thumbnail {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.portfolio-card h3 {
    color: #D4AF37;
    font-size: 18px;
    font-weight: 700;
    padding: 20px 20px 8px;
}

.portfolio-card p {
    color: #D9D9D9;
    font-size: 14px;
    padding: 0 20px 20px;
    line-height: 1.5;
}

.portfolio-card .btn {
    margin: 0 20px 20px;
    width: calc(100% - 40px);
}

/* Links Section */
.links-section {
    padding: 80px 20px;
    background-color: #0B1020;
}

.links-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.link-card {
    border: 1px solid #D4AF37;
    border-radius: 12px;
    padding: 25px;
    background-color: rgba(11, 16, 32, 0.9);
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.05);
    transition: all 0.3s ease;
}

.link-card:hover {
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.15);
    transform: translateX(8px);
    border-color: #E0C547;
}

.link-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.link-content {
    flex: 1;
}

.link-content h4 {
    color: #D4AF37;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.link-content p {
    color: #D9D9D9;
    font-size: 14px;
}

.link-card .btn {
    flex-shrink: 0;
}

/* About Section */
.about {
    padding: 80px 20px;
    background-color: #0B1020;
}

.about-card {
    border: 1px solid #D4AF37;
    border-radius: 12px;
    padding: 50px;
    background-color: rgba(11, 16, 32, 0.9);
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.1);
}

.about-card h2 {
    color: #D4AF37;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.about-card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, transparent);
}

.about-card p {
    color: #D9D9D9;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-card p:last-child {
    margin-bottom: 0;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background-color: #0B1020;
}

.contact-card {
    border: 1px solid #D4AF37;
    border-radius: 12px;
    padding: 50px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.02) 100%);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.1);
}

.contact-card h2 {
    color: #D4AF37;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 12px;
}

.contact-card p {
    color: #D9D9D9;
    font-size: 16px;
    margin-bottom: 30px;
}

/* Footer */
.footer {
    padding: 40px 20px;
    background-color: #050810;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #D4AF37;
    font-weight: bold;
    font-size: 16px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #D9D9D9;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: #D4AF37;
}

.footer-text {
    text-align: center;
    color: #666666;
    font-size: 12px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        max-width: 320px;
    }

    .hero {
        padding: 80px 20px 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 48px;
        letter-spacing: 2px;
    }

    .hero-tagline {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .hero-subtext {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .hero-buttons {
        gap: 12px;
    }

    .hero-buttons .btn {
        min-width: 180px;
        flex: 1;
        min-width: unset;
    }

    .preview-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .navbar-container {
        padding: 15px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-link {
        font-size: 12px;
    }

    .profile-card {
        padding: 40px 25px;
    }

    .profile-name {
        font-size: 32px;
    }

    .profile-headline {
        font-size: 18px;
    }

    .avatar {
        width: 100px;
        height: 100px;
    }

    .avatar-large {
        width: 80px;
        height: 80px;
    }

    .section-title {
        font-size: 32px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 24px;
    }

    .link-card {
        flex-direction: column;
        text-align: center;
    }

    .link-card .btn {
        width: 100%;
    }

    .about-card,
    .contact-card {
        padding: 30px;
    }

    .about-card h2,
    .contact-card h2 {
        font-size: 24px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .auth-card {
        padding: 40px 25px;
    }

    .auth-card h1 {
        font-size: 24px;
    }

    .link-form-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .link-form-row .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
        letter-spacing: 1px;
    }

    .hero-tagline {
        font-size: 22px;
    }

    .hero-subtext {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        min-width: unset;
    }

    .cta h2 {
        font-size: 28px;
    }

    .profile-name {
        font-size: 24px;
    }

    .profile-headline {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .skills {
        gap: 8px;
    }

    .skill-tag {
        padding: 8px 14px;
        font-size: 12px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .btn-large {
        padding: 14px 20px;
        font-size: 14px;
    }

    .stats-grid {
        gap: 15px;
    }

    .stat-number {
        font-size: 20px;
    }

    .about-card,
    .contact-card {
        padding: 20px;
    }

    .auth-card {
        padding: 25px 20px;
    }

    .auth-card h1 {
        font-size: 22px;
    }

    .edit-card {
        padding: 20px;
    }

    .edit-card h2 {
        font-size: 20px;
    }

    input,
    textarea,
    select {
        padding: 10px 12px;
        font-size: 13px;
    }

    label {
        font-size: 12px;
    }
}

/* Text Selection */
::selection {
    background-color: transparent;
    color: #D4AF37;
    font-weight: 700;
}

::-moz-selection {
    background-color: transparent;
    color: #D4AF37;
    font-weight: 700;
}

/* === WORTH animated watermark background === */
body {
    background-color: #0B1020;
    position: relative;
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url("images/watermarkBG.png") center center no-repeat;
    background-size: 70%;
    opacity: 0.12;
    filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.4));
    pointer-events: none;
    z-index: -2;
    animation: worthPulse 16s ease-in-out infinite;
}

body::after {
    content: "";
    position: fixed;
    inset: -20%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.18) 40%,
        rgba(212, 175, 55, 0.25) 50%,
        transparent 60%
    );
    mix-blend-mode: screen;
    opacity: 0.0;
    pointer-events: none;
    z-index: -1;
    animation: worthShimmer 18s linear infinite;
}

@keyframes worthPulse {
    0%, 100% {
        opacity: 0.10;
        transform: scale(1);
        filter: drop-shadow(0 0 18px rgba(212, 175, 55, 0.35));
    }
    50% {
        opacity: 0.16;
        transform: scale(1.02);
        filter: drop-shadow(0 0 32px rgba(255, 215, 128, 0.55));
    }
}

@keyframes worthShimmer {
    0% {
        opacity: 0.0;
        transform: translateX(-40%) translateY(-20%);
    }
    30% {
        opacity: 0.35;
    }
    50% {
        opacity: 0.15;
        transform: translateX(40%) translateY(10%);
    }
    80% {
        opacity: 0.0;
    }
    100% {
        transform: translateX(60%) translateY(30%);
        opacity: 0.0;
    }
}

.checkbox-inline label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #D9D9D9;
    cursor: pointer;
}

.checkbox-inline input[type="checkbox"] {
    cursor: pointer;
    accent-color: #D4AF37;
}
