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

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

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

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 430px;
    gap: 60px;
    align-items: start;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text h1 .accent {
    color: #2094f1;
}

.hero-text p {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-text p .accent {
    color: #2094f1;
    font-weight: 700;
}

/* Hero Actions - Buttons and Badges Side-by-Side */
.hero-actions {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 10px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 210px;
}

.btn {
    font-size: 1.2rem;
    padding: 8px 26px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.btn-primary {
    background-color: #ffffff;
    color: #1a1a1a;
}

.btn-primary:hover {
    background-color: #2094f1;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(32, 148, 241, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.hero-profile {
    position: relative;
}

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

.profile-placeholder {
    font-size: 6rem;
    color: #ffffff;
    opacity: 0.3;
}

.profile-info {
    position: absolute;
    bottom: -5px;
    left: -20px;
    right: 50px;
    background-color: rgba(26, 26, 26, 0.95);
    padding: 15px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(32, 148, 241, 0.3);
    border: 1px solid #fff;
}

.profile-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.profile-info p {
    font-size: 0.9rem;
    color: #b0b0b0;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: #242424;
    border-radius: 8px;
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.social-link:hover {
    background-color: #2a2a2a;
    border-color: #2094f1;
    color: #2094f1;
    transform: translateY(-2px);
}

.social-link i {
    font-size: 1.1rem;
}

/* Badges Carousel */
.badges-carousel-wrapper {
    flex: 1;
    max-width: 420px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 969px) and (max-width: 1135px) {
    .badges-carousel-wrapper {
        max-width: 260px;
    }
}

.badges-carousel {
    display: flex;
    gap: 20px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    width: 100%;
    height: 160px;
    position: relative;
}

.badge-item {
    position: relative;
    flex-shrink: 0;
}

.badges-carousel-wrapper::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0px;
    width: 100px;
    background: linear-gradient(to right, transparent, #1a1a1a);
    pointer-events: none;
    z-index: 10;
}

.badges-carousel-controls {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
    z-index: 15;
}

.badges-carousel-controls .carousel-btn {
    pointer-events: auto;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.6);
    width: 40px;
    height: 40px;
}

.badges-carousel-controls .carousel-btn:hover {
    background-color: #2094f1;
    border-color: #2094f1;
    color: #ffffff;
    transform: scale(1.05);
}

.badges-carousel-controls .carousel-dots {
    display: none;
}

.badge {
    width: 140px;
    height: 160px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease;
}

.badge:hover {
    transform: translateY(-10px);
}

.badge-1 {
    background: linear-gradient(135deg, #00a8cc 0%, #0077b6 100%);
}

.badge-2 {
    background: linear-gradient(135deg, #0096c7 0%, #00b4d8 100%);
}

.badge-3 {
    background: linear-gradient(135deg, #4361ee 0%, #3f37c9 100%);
}

.badge-content {
    text-align: center;
    padding: 20px;
}

.badge-year {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.badge-title {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.3;
}

.badge-image {
    background: none;
    overflow: hidden;
}

.badge-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Skills Section */
.section {
    padding: 40px 0;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.skill-box {
    background-color: #242424;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #333;
}

.skill-box h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.skill-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 20px;
}

.skill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.skill-item:hover {
    background-color: #2a2a2a;
    transform: translateY(-5px);
}

.skill-item i {
    font-size: 2rem;
    color: #2094f1;
}

.skill-item span {
    font-size: 0.85rem;
    color: #b0b0b0;
}

.tech-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.tech-icon {
    width: 50px;
    height: 50px;
    background-color: #2a2a2a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #b0b0b0;
    transition: all 0.3s ease;
}

.tech-icon:hover {
    background-color: #2094f1;
    color: #ffffff;
    transform: translateY(-5px);
}

/* Contributions */
.contributions {
    background-color: #242424;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #333;
    margin: 40px 0;
}

.contributions h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.contribution-graph {
    display: grid;
    grid-template-columns: repeat(52, 1fr);
    gap: 4px;
    margin-bottom: 20px;
}

.contribution-cell {
    aspect-ratio: 1;
    border-radius: 2px;
    background-color: #0e4429;
    transition: all 0.2s ease;
}

.contribution-cell:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(32, 148, 241, 0.5);
}

.contribution-cell.level-0 { background-color: #161b22; }
.contribution-cell.level-1 { background-color: #0e4429; }
.contribution-cell.level-2 { background-color: #006d32; }
.contribution-cell.level-3 { background-color: #26a641; }
.contribution-cell.level-4 { background-color: #39d353; }

.github-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #2a2a2a;
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid #444;
}

.github-btn:hover {
    background-color: #333;
    border-color: #2094f1;
}

/* Clearance */
.clearance {
    background-color: #242424;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #333;
    margin: 40px 0;
}

.clearance h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.clearance-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.clearance-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.clearance-label {
    font-size: 0.85rem;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.clearance-value {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 500;
}

.clearance-value.level {
    color: #2094f1;
    font-weight: 700;
    font-size: 1.3rem;
}

/* Experience */
.experience {
    padding: 60px 0;
}

.experience h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #2094f1 0%, #4361ee 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    background-color: #242424;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    border-color: #2094f1;
    transform: translateX(10px);
    box-shadow: 0 5px 30px rgba(32, 148, 241, 0.2);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -52px;
    top: 35px;
    width: 20px;
    height: 20px;
    background-color: #2094f1;
    border: 4px solid #1a1a1a;
    border-radius: 50%;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.job-title {
    flex: 1;
}

.job-title h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.job-role {
    font-size: 1rem;
    color: #2094f1;
    margin-bottom: 10px;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 5px 12px;
    background-color: #1a1a1a;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid #333;
}

.job-description {
    margin-top: 20px;
}

.job-description ul {
    list-style: none;
    padding: 0;
}

.job-description li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #b0b0b0;
    line-height: 1.7;
}

.job-description li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #2094f1;
    font-weight: bold;
}

.job-description strong {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero {
        padding: 10px 0 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-profile {
        order: -1;
        margin: 0 auto 70px;
    }

    .profile-image {
        width: 400px;
        height: 400px;
    }

    .profile-info {
        bottom: -10px;
        left: 0;
        right: 0;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .hero-buttons {
        align-items: center;
        width: 100%;
        max-width: 300px;
    }

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

    .badges-carousel-wrapper {
        max-width: 480px;
    }

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

    .hero-text h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .profile-image {
        width: 300px;
        height: 300px;
    }

    .profile-info {
        bottom: -35px;
        left: 0;
        right: 0;
    }

    .badge {
        width: 120px;
        height: 120px;
    }

    .badges-carousel {
        height: 120px;
    }

    .badges-carousel-controls {
        height: 120px;
    }

    .badges-carousel-wrapper {
        max-width: 320px;
    }

    .badges-carousel-wrapper::after {
        width: 60px;
        bottom: 20px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .contribution-graph {
        grid-template-columns: repeat(26, 1fr);
    }

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

    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
}

.slide-up.visible {
    animation: slideUp 0.6s ease forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-text {
    max-width: 60rem;
    text-align: center;
    font-weight: 300;
    margin: 0 auto;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.testimonials-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
}

.testimonials-carousel {
    position: relative;
    min-height: 300px;
    margin-bottom: 40px;
    transition: height 0.6s ease-in-out;
}

.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
    padding: 40px;
    background-color: #242424;
    border-radius: 12px;
    border-left: 4px solid #2094f1;
}

.testimonial-item.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-item:not(.active) .quote {
    max-height: 0;
    overflow: hidden;
}

.testimonial-item.measuring .quote {
    max-height: none !important;
}

.quote {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #e0e0e0;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
    color: #ffffff;
}

.author-title {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 5px 0 0 0;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.carousel-btn {
    background-color: #2094f1;
    color: #ffffff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.carousel-btn:hover {
    background-color: #ffffff;
    color: #2094f1;
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #2094f1;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot:hover {
    background-color: rgba(32, 148, 241, 0.3);
}

.dot.active {
    background-color: #2094f1;
    transform: scale(1.2);
}

/* Responsive Testimonials */
@media (max-width: 968px) {
    .testimonials {
        padding: 60px 0;
    }

    .testimonials-heading {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .testimonial-item {
        padding: 30px;
    }

    .quote {
        font-size: 1rem;
    }

    .carousel-controls {
        gap: 20px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .testimonials-carousel {
        min-height: 350px;
    }

    .testimonial-item {
        padding: 25px;
    }

    .quote {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .author-name {
        font-size: 1rem;
    }

    .author-title {
        font-size: 0.85rem;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

/* Blog Styles */

/* Blog Index Page */
.blog-index-wrapper {
    padding: 80px 0;
}

.blog-index-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-index-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.blog-index-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
}

.blog-list {
    max-width: 900px;
    margin: 0 auto;
}

.blog-preview {
    background-color: #242424;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #333;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.blog-preview:hover {
    border-color: #2094f1;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(32, 148, 241, 0.2);
}

.blog-preview-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.blog-preview-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-preview-title a:hover {
    color: #2094f1;
}

.blog-preview-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #b0b0b0;
}

.blog-preview-date {
    color: #2094f1;
    font-weight: 500;
}

.blog-preview-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.category-tag {
    display: inline-block;
    padding: 5px 12px;
    background-color: #1a1a1a;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #333;
    color: #b0b0b0;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2094f1;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 12px;
}

.no-posts {
    text-align: center;
    color: #b0b0b0;
    font-size: 1.1rem;
    padding: 60px 20px;
}

/* Blog Post Page */
.blog-post-wrapper {
    padding: 80px 0;
}

.blog-post {
    max-width: 900px;
    margin: 0 auto;
}

.blog-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #333;
}

.blog-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 1rem;
    color: #b0b0b0;
}

.blog-date {
    color: #2094f1;
    font-weight: 500;
}

.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.blog-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.blog-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #ffffff;
}

.blog-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #ffffff;
}

.blog-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #ffffff;
}

.blog-content p {
    margin-bottom: 20px;
}

.blog-content a {
    color: #2094f1;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.blog-content a:hover {
    color: #ffffff;
}

.blog-content ul,
.blog-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.blog-content li {
    margin-bottom: 10px;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.blog-content pre {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin-bottom: 20px;
    border: 1px solid #333;
}

.blog-content code {
    background-color: #1e1e1e;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.95em;
    font-family: 'Courier New', Courier, monospace;
}

.blog-content pre code {
    background-color: transparent;
    padding: 0;
}

.blog-content blockquote {
    border-left: 4px solid #2094f1;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #b0b0b0;
}

/* YouTube Embed Styles */
.blog-content .youtube-video-wrapper,
.blog-content .lite-youtube {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 30px 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.blog-content .youtube-video-wrapper iframe,
.blog-content .lite-youtube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 8px;
}

.blog-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px solid #333;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2094f1;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-to-blog:hover {
    gap: 12px;
}

/* Responsive Blog Styles */
@media (max-width: 968px) {
    .blog-index-wrapper,
    .blog-post-wrapper {
        padding: 60px 0;
    }

    .blog-index-title,
    .blog-title {
        font-size: 2.5rem;
    }

    .blog-preview {
        padding: 30px;
    }

    .blog-preview-title {
        font-size: 1.5rem;
    }

    .blog-content {
        font-size: 1rem;
    }

    .blog-content h2 {
        font-size: 1.75rem;
    }

    .blog-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 640px) {
    .blog-index-title,
    .blog-title {
        font-size: 2rem;
    }

    .blog-preview {
        padding: 25px;
    }

    .blog-preview-title {
        font-size: 1.3rem;
    }

    .blog-preview-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .blog-content {
        font-size: 0.95rem;
    }

    .blog-content h2 {
        font-size: 1.5rem;
    }

    .blog-content h3 {
        font-size: 1.2rem;
    }
}

/* ===== Links Page ===== */
.links-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #242424 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.links-container {
    max-width: 600px;
    width: 100%;
}

/* Profile Section */
.links-profile {
    text-align: center;
    margin-bottom: 40px;
}

.links-profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #333;
}

.links-username {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 10px 0;
}

.links-bio {
    font-size: 1rem;
    color: #b0b0b0;
    margin: 0;
    line-height: 1.6;
}

/* Links List */
.links-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: #242424;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
}

.link-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border-color: #444;
}

.link-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
    color: #ffffff;
}

.link-text {
    font-size: 1.1rem;
    font-weight: 500;
    flex: 1;
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .links-page {
        padding: 30px 16px;
    }

    .links-profile-image {
        width: 100px;
        height: 100px;
    }

    .links-username {
        font-size: 1.3rem;
    }

    .link-card {
        padding: 16px;
        gap: 12px;
    }

    .link-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .link-text {
        font-size: 1rem;
    }
}
