/* ========================
   ROOT VARIABLES & RESET
   ======================== */
:root {
    --primary-color: #063019;
    --secondary-color: #dec3a8;
    --accent-color: #0a4a28;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========================
   SCROLL PROGRESS BAR
   ======================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    z-index: 9999;
    transition: width 0.1s ease;
}

/* ========================
   HEADER / NAVIGATION
   ======================== */
header {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    z-index: 1000;
    max-width: 1100px;
    width: 90%;
    border: 1px solid rgba(6, 48, 25, 0.1);
    transition: var(--transition);
}

header.scrolled {
    top: 1rem;
    box-shadow: var(--shadow-lg);
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    transition: var(--transition);
}

.logo-bracket {
    color: var(--secondary-color);
    font-weight: 700;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links li a {
    position: relative;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

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

.nav-links li a:hover {
    color: var(--primary-color);
}

.visit-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.visit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

#menu-icon {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* ========================
   HERO SECTION
   ======================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 10% 4rem;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: var(--accent-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-50px, 50px) scale(0.9);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    width: 100%;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

.hero-greeting {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.hero-name {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.hero-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
}

.typing-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cursor {
    color: var(--secondary-color);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(6, 48, 25, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.hero-socials {
    display: flex;
    gap: 1rem;
}

.hero-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--primary-color);
    font-size: 1.3rem;
    transition: var(--transition);
    text-decoration: none;
}

.hero-social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out;
}

.hero-image-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
}

.hero-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: 70% center;
    border: 5px solid var(--primary-color);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.2;
    filter: blur(30px);
    z-index: 1;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    background: white;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-color);
    animation: floatBadge 3s infinite ease-in-out;
    z-index: 10;
}

.floating-badge i {
    font-size: 1.2rem;
}

.badge-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 20%;
    left: -15%;
    animation-delay: 1s;
}

.badge-3 {
    top: 60%;
    right: -5%;
    animation-delay: 2s;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeIn 2s ease-out;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

.scroll-indicator p {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================
   SECTION STYLING
   ======================== */
section {
    padding: 6rem 10%;
    position: relative;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.section-number {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.section-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, transparent 100%);
    margin-left: 1rem;
}

/* ========================
   ABOUT SECTION
   ======================== */
.about {
    background: var(--bg-light);
}

.about-content {
    max-width: 900px;
}

.about-text {
    margin-bottom: 3rem;
}

.about-paragraph {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-paragraph strong {
    color: var(--primary-color);
    font-weight: 600;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Interests Section within About */
.interests-section {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 2px solid var(--border-color);
}

.interests-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.interests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.interest-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
}

.interest-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.interest-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.interest-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.interest-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.interest-description strong {
    color: var(--primary-color);
    font-weight: 600;
}

.music-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.music-tags span {
    padding: 0.4rem 0.9rem;
    background: var(--bg-light);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--primary-color);
}

/* ========================
   EXPERIENCE SECTION
   ======================== */
.experience {
    background: white;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
    grid-column: 1;
    grid-row: 1;
}

.timeline-item:nth-child(even) .timeline-date {
    text-align: left;
}

.timeline-item:nth-child(odd) .timeline-content {
    grid-column: 3;
}

.timeline-dot {
    grid-column: 2;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--primary-color);
    position: relative;
    z-index: 2;
    align-self: start;
    margin: 0 auto;
    margin-top: 1rem;
}

.timeline-date {
    grid-column: 1;
    text-align: right;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1.1rem;
    padding-top: 1rem;
}

.timeline-item:nth-child(even) .timeline-date {
    grid-column: 3;
}

.timeline-content {
    animation: fadeInUp 0.6s ease-out;
}

.timeline-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.card-title-section {
    flex: 1;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.card-company {
    font-size: 1.05rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-location {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    margin-top: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.card-location i {
    font-size: 0.85rem;
}

.current-badge {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.4rem 0.8rem;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-description {
    list-style: none;
    margin-bottom: 1rem;
}

.card-description li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.card-description li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: bold;
}

.card-description strong {
    color: var(--primary-color);
    font-weight: 600;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.card-tags span {
    padding: 0.4rem 0.8rem;
    background: white;
    color: var(--primary-color);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--primary-color);
}

/* ========================
   PROJECTS SECTION
   ======================== */
.projects {
    background: var(--bg-light);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    max-width: 1400px;
}

.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.project-image {
    position: relative;
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-overlay {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
}

.project-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.project-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.project-description-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.project-description {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.project-description strong {
    color: var(--primary-color);
    font-weight: 600;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.project-tech span {
    padding: 0.4rem 0.9rem;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

.project-links {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.project-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--bg-light);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 1.3rem;
    transition: var(--transition);
    text-decoration: none;
}

.project-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* ========================
   SKILLS SECTION
   ======================== */
.skills {
    background: white;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin-bottom: 4rem;
}

.skill-category {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.skill-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.skill-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.skill-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.skill-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.skill-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.skill-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.skill-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.skill-bar {
    width: 100%;
    height: 8px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    transition: width 1s ease-out;
}

.certification-highlight {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    color: white;
}

.cert-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.cert-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cert-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.cert-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: var(--transition);
}

.cert-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

/* ========================
   CONTACT SECTION
   ======================== */
.contact {
    background: var(--bg-light);
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-description {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-decoration: none;
    text-align: left;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.method-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 12px;
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.method-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    min-width: 0;
    flex: 1;
}

.method-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.method-value {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
    word-break: break-word;
    overflow-wrap: break-word;
}

.contact-btn {
    margin: 0 auto;
}

/* ========================
   FOOTER
   ======================== */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 2rem 10%;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-text {
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-text strong {
    font-weight: 700;
    color: var(--secondary-color);
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.1rem;
    transition: var(--transition);
    text-decoration: none;
}

.footer-socials a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* ========================
   RESPONSIVE DESIGN
   ======================== */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-image-container {
        order: -1;
    }
    
    .hero-image-wrapper {
        width: 300px;
        height: 300px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        grid-template-columns: 60px 1fr;
        gap: 1.5rem;
    }
    
    .timeline-dot {
        grid-column: 1;
        grid-row: 1;
        margin-left: 20px;
    }
    
    .timeline-date {
        grid-column: 2;
        grid-row: 1;
        text-align: left !important;
        padding-bottom: 0.5rem;
    }
    
    .timeline-content {
        grid-column: 2;
        grid-row: 2;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        grid-column: 2;
        grid-row: 2;
    }
    
    .timeline-item:nth-child(even) .timeline-date {
        grid-column: 2;
        text-align: left;
    }
}

@media (max-width: 900px) {
    section {
        padding: 4rem 6%;
    }
    
    header {
        padding: 0.8rem 1.5rem;
        gap: 1.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    #menu-icon {
        display: block;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 6rem 6% 3rem;
    }
    
    .hero-image-wrapper {
        width: 250px;
        height: 250px;
    }
    
    .image-glow {
        width: 270px;
        height: 270px;
    }
    
    .floating-badge {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-line {
        display: none;
    }
    
    .certification-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-dot {
        margin-left: 10px;
    }
}

/* ========================
   MUSIC OVERLAY
   ======================== */
.music-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.music-overlay.active {
    opacity: 1;
    visibility: visible;
}

.music-container {
    background: linear-gradient(135deg, rgba(20, 20, 25, 0.98) 0%, rgba(30, 30, 35, 0.98) 100%);
    border: 2px solid rgba(222, 195, 168, 0.2);
    border-radius: 24px;
    padding: 3rem;
    max-width: 800px;
    width: 90%;
    position: relative;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(222, 195, 168, 0.1);
    transform: scale(0.9);
    transition: transform 0.4s ease;
}

.music-overlay.active .music-container {
    transform: scale(1);
}

.close-music-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(222, 195, 168, 0.1);
    border: 1px solid rgba(222, 195, 168, 0.3);
    color: var(--secondary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.close-music-btn:hover {
    background: rgba(222, 195, 168, 0.2);
    transform: rotate(90deg);
}

.music-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(222, 195, 168, 0.2);
}

.music-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: block;
    animation: pulse 2s ease-in-out infinite;
}

.music-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.music-subtitle {
    color: rgba(222, 195, 168, 0.7);
    font-size: 1rem;
}

.music-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.top-artists h3,
.music-genres h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-artists h3 i,
.music-genres h3 i {
    font-size: 1.2rem;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.artists-carousel {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.artist-card {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(100px) scale(0.8);
    transition: all 0.5s ease;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.artist-card.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: all;
}

.artist-image {
    position: relative;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: visible;
    border: 3px solid rgba(222, 195, 168, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.artist-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    overflow: hidden;
    z-index: -1;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.artist-rank {
    position: absolute;
    top: -1rem;
    left: -1rem;
    background: rgba(6, 48, 25, 0.95);
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.artist-name {
    color: var(--secondary-color);
    font-size: 1.75rem;
    font-weight: 600;
    text-align: center;
}

.carousel-btn {
    background: rgba(222, 195, 168, 0.1);
    border: 1px solid rgba(222, 195, 168, 0.3);
    color: var(--secondary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: rgba(222, 195, 168, 0.2);
    border-color: rgba(222, 195, 168, 0.5);
    transform: scale(1.1);
}

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

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(222, 195, 168, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--secondary-color);
    transform: scale(1.3);
}

.dot:hover {
    background: rgba(222, 195, 168, 0.6);
}

.genres-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.music-genres .genre-tag {
    background: rgba(222, 195, 168, 0.15);
    border: 1px solid rgba(222, 195, 168, 0.3);
    color: var(--secondary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.music-genres .genre-tag:hover {
    background: rgba(222, 195, 168, 0.25);
    transform: scale(1.05);
}

.music-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.music-card:hover {
    transform: translateY(-8px);
}

.games-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.games-card:hover {
    transform: translateY(-8px);
}

.sports-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.sports-card:hover {
    transform: translateY(-8px);
}

/* ========================
   SPORTS OVERLAY
   ======================== */
.sports-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.sports-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sports-container {
    background: linear-gradient(135deg, rgba(20, 20, 25, 0.98) 0%, rgba(30, 30, 35, 0.98) 100%);
    border: 2px solid rgba(222, 195, 168, 0.2);
    border-radius: 24px;
    padding: 2rem;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(222, 195, 168, 0.1);
    transform: scale(0.9);
    transition: transform 0.4s ease;
}

.sports-overlay.active .sports-container {
    transform: scale(1);
}

.close-sports-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(222, 195, 168, 0.1);
    border: 1px solid rgba(222, 195, 168, 0.3);
    color: var(--secondary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.close-sports-btn:hover {
    background: rgba(222, 195, 168, 0.2);
    transform: rotate(90deg);
}

.sports-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(222, 195, 168, 0.2);
}

.sports-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    display: block;
}

.sports-header h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.sports-subtitle {
    color: rgba(222, 195, 168, 0.7);
    font-size: 0.95rem;
}

.sports-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.favorite-team h3,
.top-players h3 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.team-card {
    background: rgba(222, 195, 168, 0.08);
    border: 2px solid rgba(222, 195, 168, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    background: rgba(222, 195, 168, 0.12);
    border-color: rgba(222, 195, 168, 0.5);
}

.team-logo {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    border: 3px solid rgba(222, 195, 168, 0.3);
    background: rgba(222, 195, 168, 0.05);
    overflow: hidden;
}

.team-logo img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    display: block;
    border-radius: 0;
    border: none;
}

.team-name {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.team-desc {
    color: rgba(222, 195, 168, 0.7);
    font-size: 1rem;
}

.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.player-card {
    background: rgba(222, 195, 168, 0.05);
    border: 1px solid rgba(222, 195, 168, 0.2);
    border-radius: 16px;
    padding: 1.25rem 1rem;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
}

.player-card:hover {
    background: rgba(222, 195, 168, 0.1);
    border-color: rgba(222, 195, 168, 0.4);
    transform: translateY(-5px);
}

.player-rank {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(6, 48, 25, 0.95);
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.player-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-icon img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 15%;
    display: block;
    border: 4px solid rgba(222, 195, 168, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.player-icon img.tatum-img {
    object-position: 60% 15%;
}

.player-name {
    color: var(--secondary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.player-desc {
    color: rgba(222, 195, 168, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sports-container {
        padding: 2rem 1rem;
        width: 95%;
    }
    
    .sports-header h2 {
        font-size: 2rem;
    }
    
    .players-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================
   GAMES OVERLAY
   ======================== */
.games-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.games-overlay.active {
    opacity: 1;
    visibility: visible;
}

.games-container {
    background: linear-gradient(135deg, rgba(20, 20, 25, 0.98) 0%, rgba(30, 30, 35, 0.98) 100%);
    border: 2px solid rgba(222, 195, 168, 0.2);
    border-radius: 24px;
    padding: 3rem;
    max-width: 900px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(222, 195, 168, 0.1);
    transform: scale(0.9);
    transition: transform 0.4s ease;
}

.games-overlay.active .games-container {
    transform: scale(1);
}

.close-games-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(222, 195, 168, 0.1);
    border: 1px solid rgba(222, 195, 168, 0.3);
    color: var(--secondary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.close-games-btn:hover {
    background: rgba(222, 195, 168, 0.2);
    transform: rotate(90deg);
}

.games-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(222, 195, 168, 0.2);
}

.games-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: block;
}

.games-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.games-subtitle {
    color: rgba(222, 195, 168, 0.7);
    font-size: 1rem;
}

.games-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.top-games h3,
.honorary-mention h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.game-card {
    background: rgba(222, 195, 168, 0.05);
    border: 1px solid rgba(222, 195, 168, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.game-card:hover {
    background: rgba(222, 195, 168, 0.1);
    border-color: rgba(222, 195, 168, 0.4);
    transform: translateY(-5px);
}

.game-rank {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(6, 48, 25, 0.95);
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.game-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.game-name {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.game-desc {
    color: rgba(222, 195, 168, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

.honorary-card {
    background: rgba(222, 195, 168, 0.08);
    border: 2px solid rgba(222, 195, 168, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.honorary-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.honorary-content h4 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.honorary-content p {
    color: rgba(222, 195, 168, 0.7);
    font-size: 1rem;
    line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .games-container {
        padding: 2rem 1rem;
        width: 95%;
    }
    
    .games-header h2 {
        font-size: 2rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .honorary-card {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .music-container {
        padding: 2rem 1rem;
        width: 95%;
    }
    
    .music-header h2 {
        font-size: 2rem;
    }
    
    .carousel-container {
        gap: 1rem;
    }
    
    .artists-carousel {
        max-width: 280px;
        height: 380px;
    }
    
    .artist-image {
        width: 220px;
        height: 220px;
        border-radius: 50%;
    }
    
    .artist-name {
        font-size: 1.5rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .artist-rank {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .close-music-btn {
        top: 1rem;
        right: 1rem;
    }
}
/* ========================
   MOVIES OVERLAY
   ======================== */

.movies-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.movies-overlay.active {
    opacity: 1;
    visibility: visible;
}

.movies-container {
    background: linear-gradient(135deg, rgba(20, 20, 25, 0.98) 0%, rgba(30, 30, 35, 0.98) 100%);
    border: 2px solid rgba(222, 195, 168, 0.2);
    border-radius: 24px;
    padding: 3rem;
    max-width: 900px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(222, 195, 168, 0.1);
    transform: scale(0.9);
    transition: transform 0.4s ease;
}

.movies-overlay.active .movies-container {
    transform: scale(1);
}

.close-movies-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(222, 195, 168, 0.1);
    border: 1px solid rgba(222, 195, 168, 0.3);
    color: var(--secondary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.close-movies-btn:hover {
    background: rgba(222, 195, 168, 0.2);
    transform: rotate(90deg);
}

.movies-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(222, 195, 168, 0.2);
}

.movies-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: block;
}

.movies-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.movies-subtitle {
    color: rgba(222, 195, 168, 0.7);
    font-size: 1rem;
}

.movies-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.favorite-movie h3,
.favorite-show h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.movie-card,
.show-card {
    background: rgba(222, 195, 168, 0.05);
    border: 2px solid rgba(222, 195, 168, 0.3);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.movie-card:hover,
.show-card:hover {
    background: rgba(222, 195, 168, 0.1);
    border-color: rgba(222, 195, 168, 0.5);
    transform: translateY(-5px);
}

.movie-poster,
.show-poster {
    width: 100%;
    max-width: 300px;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(222, 195, 168, 0.3);
}

.movie-poster img,
.show-poster img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.movie-card:hover .movie-poster img,
.show-card:hover .show-poster img {
    transform: scale(1.05);
}

.movie-icon,
.show-icon {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    width: 100px;
    height: 100px;
    background: rgba(6, 48, 25, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--secondary-color);
}

.movie-name,
.show-name {
    color: var(--secondary-color);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.movie-desc,
.show-desc {
    color: rgba(222, 195, 168, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 600px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .movies-container {
        padding: 2rem 1rem;
        width: 95%;
    }
    
    .movies-header h2 {
        font-size: 2rem;
    }
    
    .movie-card,
    .show-card {
        padding: 1.5rem;
    }
    
    .movie-poster,
    .show-poster {
        max-width: 220px;
    }
    
    .movie-icon,
    .show-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .movie-name,
    .show-name {
        font-size: 1.5rem;
    }
}