.fp-watermark {
    display: none;
}

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

:root {
    --primary: #00D98B;
    --primary-dark: #00A661;
    --secondary: #0A2540;
    --accent: #FFB800;
    --dark: #0F1419;
    --light: #F7F9FC;
    --white: #FFFFFF;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
}

/* Ensure sections work with fullPage.js scrollOverflow */
.section {
    position: relative;
}

/* Fix for fullPage.js wrapper */
#fullpage {
    position: relative;
}

/* FullPage scrollOverflow container styling */
.fp-overflow {
    padding-bottom: 2rem;
}

/* Ensure container doesn't force min-height on overflow sections */
.fp-overflow .container {
    min-height: auto !important;
    padding-bottom: 4rem;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    background: rgba(15, 20, 25, 0.8);
    backdrop-filter: blur(10px);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-progress {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
}

.progress-current,
.progress-total {
    font-size: 1rem;
    font-weight: 600;
}

.progress-bar {
    width: 100px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
}

.progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--primary);
    width: 11%;
    transition: width 0.3s ease;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 4rem 4rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Section Header */
.section-header {
    margin-bottom: 3rem;
}

.section-number {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.1;
    background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Video Section - Manual Playable */
.video-section-wrapper {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
    padding: 2rem;
    gap: 2rem;
}

.video-player-container {
    width: 100%;
    max-width: 1200px;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.main-video {
    width: 100%;
    height: auto;
    max-height: 70vh;
    display: block;
    object-fit: contain;
}

.video-caption {
    text-align: center;
    color: var(--white);
    max-width: 800px;
}

.video-title {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.video-subtitle {
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: 2px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

/* Old video container styles - keep for reference */
.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 217, 139, 0.3) 0%, rgba(10, 37, 64, 0.7) 100%);
}

.video-content {
    position: relative;
    z-index: 10;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 2rem;
}

.hero-title {
    font-size: 6rem;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 2px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.scroll-indicator span {
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-arrow {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

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

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

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
}

.content-card {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 6px solid var(--primary);
}

.content-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.content-card p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--secondary);
}

.mission-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.mission-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 2rem;
    border-radius: 16px;
    color: var(--white);
}

.mission-card.vision {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.mission-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.mission-card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Hero Card */
.hero-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 3rem;
    border-radius: 24px;
    margin-bottom: 3rem;
    color: var(--white);
}

.hero-card.women {
    background: linear-gradient(135deg, var(--accent) 0%, #FF8C00 100%);
}

.hero-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-card p {
    font-size: 1.25rem;
    line-height: 1.8;
    opacity: 0.95;
}

/* Benefits Showcase */
.benefits-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-item {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 217, 139, 0.2);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.benefit-item h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.benefit-item p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--secondary);
}

/* Azerbaijan Layout */
.azerbaijan-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.fifa-showcase {
    background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    color: var(--white);
    margin-bottom: 2rem;
}

.fifa-label {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.fifa-number {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.fifa-sublabel {
    font-size: 1.125rem;
    opacity: 0.8;
}

.info-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 16px;
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.info-card p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--secondary);
}

.clubs-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary);
}

.clubs-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.club-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--light);
    padding: 1.5rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.club-item:hover {
    transform: translateX(10px);
}

.club-trophy {
    font-size: 2.5rem;
}

.club-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
}

.club-desc {
    font-size: 1rem;
    color: var(--secondary);
}

/* Profile Card - New Mobile-Friendly Design */
.profile-card-new {
    background: var(--light);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.profile-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.profile-photo-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

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

.profile-info {
    color: var(--white);
    text-align: center;
}

.profile-info h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.profile-role {
    font-size: 1.5rem;
    font-weight: 600;
    opacity: 0.95;
    margin-bottom: 1rem;
}

.profile-meta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.profile-meta span {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.profile-meta .license {
    background: var(--accent);
    color: var(--dark);
    font-weight: 700;
}

.profile-content-new {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.profile-about {
    padding: 0;
}

.profile-about h4,
.profile-achievements h4,
.profile-experience h4 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary);
}

.profile-about p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.profile-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.badge-item {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 1.25rem 2rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    flex: 1;
    min-width: 150px;
    justify-content: center;
}

.badge-icon {
    font-size: 2rem;
}

.badge-text {
    font-size: 1.125rem;
    font-weight: 600;
}

.profile-achievements,
.profile-experience {
    padding: 0;
}

.achievement-list-new,
.experience-list-new {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.achievement-badge {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.achievement-badge.gold {
    background: linear-gradient(135deg, var(--accent) 0%, #FF8C00 100%);
}

.achievement-badge.silver {
    background: linear-gradient(135deg, #95A5A6 0%, #7F8C8D 100%);
}

.exp-badge {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    color: var(--white);
    flex: 1;
    min-width: 150px;
    text-align: center;
}

/* Old profile showcase - keep for backwards compatibility but hide on mobile */
.profile-showcase {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
}

.profile-image {
    position: relative;
}

.profile-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.profile-badge {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
    min-width: 320px;
}

.profile-badge h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.profile-badge p {
    font-size: 1.125rem;
    color: var(--primary);
    font-weight: 600;
}

.profile-credentials {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--light);
}

.profile-credentials span {
    font-size: 0.875rem;
    color: var(--secondary);
}

.profile-credentials .license {
    color: var(--primary);
    font-weight: 700;
}

.profile-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.profile-bio {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 6px solid var(--primary);
}

.profile-bio h4 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.profile-bio p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.profile-bio p:last-child {
    margin-bottom: 0;
}

.responsibilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.resp-item {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    color: var(--white);
}

.resp-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.resp-text {
    font-size: 1.125rem;
    font-weight: 600;
}

/* Achievements */
.achievements-showcase {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 6px solid var(--accent);
}

.achievements-showcase h4 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.achievement-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.achievement-tag {
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.achievement-tag.gold {
    background: linear-gradient(135deg, var(--accent) 0%, #FF8C00 100%);
}

.achievement-tag.silver {
    background: linear-gradient(135deg, #95A5A6 0%, #7F8C8D 100%);
}

.experience-showcase {
    background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    color: var(--white);
}

.experience-showcase h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.experience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.exp-tag {
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    background: rgba(0, 217, 139, 0.2);
    border: 2px solid var(--primary);
}

/* Main Benefits */
.main-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.main-benefit-card {
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
}

.main-benefit-card.physical {
    background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
}

.main-benefit-card.mental {
    background: linear-gradient(135deg, #9B59B6 0%, #8E44AD 100%);
}

.main-benefit-card.health {
    background: linear-gradient(135deg, #3498DB 0%, #2980B9 100%);
}

.benefit-emoji {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.main-benefit-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.main-benefit-card p {
    font-size: 1.125rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* Skills Showcase */
.skills-showcase {
    background: var(--light);
    padding: 3rem;
    border-radius: 24px;
    margin-top: 3rem;
}

.skills-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 2.5rem;
}

.skills-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 0;
}

.skill-bubble {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5;
    transition: transform 0.3s ease;
    white-space: nowrap;
    vertical-align: middle;
}

.skill-bubble:hover {
    transform: scale(1.1);
}

.skill-bubble:nth-child(even) {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
}

/* Women Benefits Grid */
.women-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.women-benefit-card {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border-top: 4px solid var(--accent);
    transition: transform 0.3s ease;
}

.women-benefit-card:hover {
    transform: translateY(-10px);
}

.wb-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1.5rem;
}

.women-benefit-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.women-benefit-card p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--secondary);
}

/* Quote Block */
.quote-block {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.6;
    font-style: italic;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 2rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.social-link {
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .main-nav {
        padding: 1.5rem 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .about-grid,
    .azerbaijan-layout,
    .profile-showcase {
        grid-template-columns: 1fr;
    }
    
    .benefits-showcase,
    .main-benefits,
    .women-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    /* Profile cards are already mobile-friendly */
    .profile-photo-circle {
        width: 180px;
        height: 180px;
    }
    
    .profile-info h3 {
        font-size: 2rem;
    }
    
    .profile-role {
        font-size: 1.25rem;
    }
    
    .badge-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    /* Fix container padding for mobile */
    .container {
        padding: 5rem 2rem 3rem;
    }

    .main-nav {
        padding: 1.5rem 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-card h3 {
        font-size: 1.5rem;
    }

    .hero-card p {
        font-size: 1.1rem;
    }

    .mission-cards,
    .responsibilities-grid {
        grid-template-columns: 1fr;
    }

    .profile-badge {
        position: static;
        transform: none;
        margin-top: 1rem;
    }

    /* Mobile-specific profile adjustments */
    .profile-header {
        padding: 2rem 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .profile-photo-circle {
        width: 150px;
        height: 150px;
    }
    
    .profile-info h3 {
        font-size: 1.75rem;
    }
    
    .profile-role {
        font-size: 1.125rem;
    }

    /* Fix skill bubbles on mobile */
    .skills-showcase {
        padding: 2rem 1.5rem;
    }

    .skill-bubble {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .skills-cloud {
        gap: 1rem;
    }

    .profile-content-new {
        padding: 2rem 1.5rem;
    }
    
    .profile-about h4,
    .profile-achievements h4,
    .profile-experience h4 {
        font-size: 1.5rem;
    }
    
    .profile-about p {
        font-size: 1rem;
    }
    
    .badge-item {
        padding: 1rem 1.5rem;
    }
    
    .achievement-badge,
    .exp-badge {
        flex: 1 1 100%;
        min-width: auto;
    }
    
    /* Video sections mobile */
    .video-section-wrapper {
        padding: 1rem;
        gap: 1rem;
    }
    
    .main-video {
        max-height: 50vh;
        border-radius: 8px;
    }
    
    .video-title {
        font-size: 2rem;
    }
    
    .video-subtitle {
        font-size: 1.25rem;
    }
    
    .social-links {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .social-link {
        width: 100%;
        text-align: center;
    }
}
