/*
==================================================
NION STUDIOS™ - STYLESHEET ORGANIZADO
==================================================
Estructura:
1. Reset y Variables
2. Base Styles
3. Componentes Globales
4. Navegación
5. Secciones de Páginas
6. Responsive Design
==================================================
*/

/* ===== 1. RESET Y VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Skip to main content link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--text-color);
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 4px;
    font-weight: 600;
}

.skip-link:focus {
    top: 10px;
    left: 10px;
}

:root {
    --primary-color: #ea62d6;
    --secondary-color: #d147c1;
    --bg-color: #000000;
    --text-color: #ffffff;
    --text-gray: #888888;
    --card-bg: #0a0a0a;
    --border-color: #222222;
    
    /* Responsive Breakpoints */
    --mobile: 480px;
    --tablet: 768px;
    --desktop: 1024px;
    --large-desktop: 1440px;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    opacity: 0;
    animation: pageLoad 0.8s ease forwards;
    overflow-x: hidden;
}

/* Page Transitions */
@keyframes pageLoad {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-transition {
    opacity: 1;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.page-transition.fade-out {
    opacity: 0;
    transform: translateY(-10px);
}

/* Scroll Animations */
@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Animation Classes - Básicas */
.fade-in-basic {
    animation: fadeInBasic 0.8s ease forwards;
}

@keyframes fadeInBasic {
    from {
        opacity: 0.3;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(234, 98, 214, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(234, 98, 214, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(234, 98, 214, 0);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

.typewriter {
    overflow: hidden;
    border-right: 2px solid var(--primary-color);
    white-space: nowrap;
    animation: typewriter 3s steps(40, end), blink 0.75s step-end infinite;
}

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

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Top Bar */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(234, 98, 214, 0.2);
    z-index: 1001;
    padding: 0.6rem 0;
}

.top-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem 0 0.5rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-self: start;
}

.top-bar-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 4px;
}

.top-bar-logo-link:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(234, 98, 214, 0.6);
}

.top-bar-home-logo {
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 0 8px rgba(234, 98, 214, 0.4));
    transition: filter 0.3s ease;
}

.top-bar-logo-link:hover .top-bar-home-logo {
    filter: drop-shadow(0 0 12px rgba(234, 98, 214, 0.8));
}

.top-bar-nav {
    display: flex;
    gap: 2rem;
}

.top-bar-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.4rem 0;
    white-space: nowrap;
}

.top-bar-nav a:hover {
    color: var(--primary-color);
}

.top-bar-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.4rem 0.8rem;
}

.top-bar-logo {
    width: 24px;
    height: 24px;
}

.top-bar-title {
    color: var(--text-color);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
}

.top-bar-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}


.social-icons {
    display: flex;
    gap: 0.5rem;
}

.social-icon {
    color: rgba(255, 255, 255, 0.6);
    padding: 0.4rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    color: var(--primary-color);
    background: rgba(234, 98, 214, 0.1);
}


.logo-nav {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.logo-nav:hover {
    opacity: 0.8;
}

.logo-icon {
    width: 32px;
    height: 32px;
    transition: all 0.6s ease;
}

.logo-nav:hover .logo-icon {
    opacity: 0.8;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    letter-spacing: 1px;
}


.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
    outline: none;
}

.menu-toggle:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text-color);
    margin: 2px 0;
    transition: 0.2s;
}

/* Hero Section con GIF de fondo */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    justify-content: center;
    text-align: center;
    padding: 100px 5% 50px 5%;
    position: relative;
    margin-top: 0;
    background: 
        linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.8) 70%, #000000 100%),
        url('../videos/NION_STUDIOS_INTRO_V3.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 3;
    backdrop-filter: blur(2px);
    background: rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ea62d6, #d147c1, #ea62d6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 8px rgba(234, 98, 214, 0.4);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.highlight {
    background: linear-gradient(135deg, #ea62d6, #d147c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(234, 98, 214, 0.4);
}

.hero-info-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
}

.hero-logo {
    width: 240px;
    height: 240px;
    filter: drop-shadow(0 0 30px rgba(234, 98, 214, 0.9));
    animation: float 3s ease-in-out infinite;
    flex-shrink: 0;
    margin-left: -3rem;
}

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

.hero-text-box {
    background: transparent;
    padding: 0;
    border: none;
    backdrop-filter: none;
    max-width: 650px;
    box-shadow: none;
    position: relative;
}


.hero-text-box p {
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    line-height: 1.7;
    font-weight: 400;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.highlight-text {
    color: #ea62d6;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(234, 98, 214, 0.6);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 1rem;
}

.feature-item .inline-icon {
    width: 18px;
    height: 18px;
    fill: #ea62d6;
    filter: drop-shadow(0 0 6px rgba(234, 98, 214, 0.6));
}

.modern-cta-button {
    display: inline-block;
    color: #ea62d6;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.8rem 0;
    position: relative;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    border-bottom: 2px solid transparent;
}

.modern-cta-button:hover {
    color: #d147c1;
    border-bottom-color: #ea62d6;
    text-shadow: 0 0 8px rgba(234, 98, 214, 0.4);
    transform: translateX(5px);
}

.modern-cta-button::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ea62d6, #d147c1);
    transition: width 0.3s ease;
}

.modern-cta-button:hover::after {
    width: 100%;
}

/* Ko-fi Support Section */
.kofi-support-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(234, 98, 214, 0.1), rgba(209, 71, 193, 0.05));
    border-top: 1px solid rgba(234, 98, 214, 0.2);
    border-bottom: 1px solid rgba(234, 98, 214, 0.2);
}

.kofi-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.kofi-info {
    flex: 1;
}

.kofi-title {
    font-size: 2rem;
    font-weight: 700;
}

.kofi-description {
font-size: 1.1rem;
line-height: 1.6;
color: rgba(255, 255, 255, 0.9);
margin: 0;
}

.collaborator-info {
    padding: 1rem 1.5rem 1.5rem 1.5rem;
    text-align: center;
    background: var(--card-bg);
    border-radius: 0 0 20px 20px;
}

.collaborator-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.kofi-button-container {
flex-shrink: 0;
}

.kofi-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #ff5e5b;
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 94, 91, 0.3);
}

.kofi-button:hover {
    background: #e54b47;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 94, 91, 0.4);
}

.kofi-logo {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}


.hero-recent-project {
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.recent-project-label {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.recent-project-showcase {
    text-align: center;
}

.showcase-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ea62d6, #d147c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-image-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.showcase-image-container:hover {
    transform: translateY(-3px);
}

.showcase-image {
    width: 100%;
    height: auto;
    display: block;
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(234, 98, 214, 0.05), rgba(209, 71, 193, 0.05));
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 1rem;
}

.showcase-status {
    background: rgba(234, 98, 214, 0.9);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Recent Project Section */
.recent-project-section {
    padding: 3rem 0;
    background: var(--bg-color);
}

.recent-project-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.project-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ea62d6, #d147c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.project-image-container:hover {
    transform: translateY(-5px);
}

.project-image {
    width: 100%;
    height: auto;
    display: block;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(234, 98, 214, 0.1), rgba(209, 71, 193, 0.1));
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 1.5rem;
}

.project-status {
    background: rgba(234, 98, 214, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Brief About Section */
.brief-about-section {
    padding: 4rem 0;
    background: var(--bg-color);
}

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

.brief-intro {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.brief-intro strong {
    background: linear-gradient(135deg, #ea62d6, #d147c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

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

.highlight-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(234, 98, 214, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(234, 98, 214, 0.1);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(234, 98, 214, 0.1);
    border-color: rgba(234, 98, 214, 0.2);
    transform: translateY(-2px);
}

.highlight-item span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.brief-cta {
    margin-top: 2rem;
}

/* About Section */
.about-section {
    padding: 3rem 0;
    background: var(--bg-color);
}

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

.about-text {
    text-align: center;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.about-intro {
    font-size: 1.3rem !important;
    color: rgba(255, 255, 255, 1) !important;
    margin-bottom: 2.5rem !important;
}

.about-intro strong {
    background: linear-gradient(135deg, #ea62d6, #d147c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.about-mission {
    font-size: 1.2rem !important;
    color: rgba(255, 255, 255, 1) !important;
    font-style: italic;
    padding: 2rem;
    background: rgba(234, 98, 214, 0.1);
    border-radius: 12px;
    border-left: 4px solid #ea62d6;
    margin-top: 2rem !important;
}

.about-mission strong {
    background: linear-gradient(135deg, #ea62d6, #d147c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* Affiliates Section */
.affiliates-section {
    padding: 3rem 0;
    background: var(--bg-color);
}

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

.affiliate-card {
background: var(--card-bg);
border-radius: 12px;
padding: 2rem;
text-align: center;
border: 1px solid var(--border-color);
transition: all 0.6s ease;
position: relative;
overflow: hidden;
opacity: 1;
}

.affiliate-card .collaborator-info {
padding: 1.5rem;
text-align: center;
pointer-events: none;
}

.affiliate-card:hover {
    transform: translateY(-5px);
    border-color: rgba(234, 98, 214, 0.3);
    box-shadow: 0 10px 30px rgba(234, 98, 214, 0.1);
}

.affiliate-logo {
    width: 180px;
    height: 180px;
    margin: 0 auto 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
}

.affiliate-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.affiliate-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ea62d6, #d147c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.affiliate-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Credit Cards Enhanced Styles */
.credit-card {
    position: relative;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(234, 98, 214, 0.05) 0%, rgba(209, 71, 193, 0.05) 100%);
    border: 2px solid rgba(234, 98, 214, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
}

.credit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(234, 98, 214, 0.1) 0%, rgba(209, 71, 193, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
    z-index: 0;
}

.credit-card:hover::before {
    opacity: 1;
}

.credit-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(234, 98, 214, 0.5);
    box-shadow: 0 15px 40px rgba(234, 98, 214, 0.2), 0 0 30px rgba(234, 98, 214, 0.1);
}

.credit-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #ea62d6, #d147c1);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(234, 98, 214, 0.4);
    z-index: 2;
    transition: all 0.3s ease;
}

.credit-card:hover .credit-badge {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(234, 98, 214, 0.6);
}

.credit-badge-sponsor {
    background: linear-gradient(135deg, #4a90e2, #357abd);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.4);
}

.credit-card:hover .credit-badge-sponsor {
    box-shadow: 0 6px 16px rgba(74, 144, 226, 0.6);
}

.credit-logo {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 1.5rem auto 1rem;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid rgba(234, 98, 214, 0.3);
    box-shadow: 0 8px 24px rgba(234, 98, 214, 0.2);
    transition: all 0.4s ease;
}

.credit-card:hover .credit-logo {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(234, 98, 214, 0.3);
}

.credit-image {
    border-radius: 12px;
    transition: all 0.4s ease;
    filter: brightness(0.95);
}

.credit-card:hover .credit-image {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.credit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 12px;
    backdrop-filter: blur(4px);
}

.credit-card:hover .credit-overlay {
    opacity: 1;
}

.credit-twitter-icon {
    color: white;
    width: 32px;
    height: 32px;
    transform: scale(0.8);
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.credit-card:hover .credit-twitter-icon {
    transform: scale(1);
}

.credit-card .affiliate-name {
    position: relative;
    z-index: 1;
    margin-top: 0.5rem;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
}

.credit-card:hover .affiliate-name {
    transform: translateY(-2px);
}

.credit-card .affiliate-description {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

/* Hero Page Styles */
.hero-page {
    min-height: 25vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 5% 20px 5%;
    position: relative;
    background: 
        linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.9) 70%, #000000 100%),
        linear-gradient(135deg, #ea62d6 0%, #d147c1 30%, #ea62d6 60%, #d147c1 100%);
}

.hero-page .hero-content {
    max-width: 600px;
}

/* Hero Title with Logo */
.hero-title-with-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.title-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(234, 98, 214, 0.6));
    flex-shrink: 0;
}

.hero-page .hero-title {
    font-size: 4.2rem;
    font-weight: 700;
    margin-bottom: 0;
    background: linear-gradient(135deg, #ffffff 0%, #ea62d6 30%, #d147c1 60%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 25px rgba(234, 98, 214, 0.7), 0 0 50px rgba(209, 71, 193, 0.4);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
    white-space: nowrap;
}

.hero .hero-title {
    font-size: 4.2rem;
    font-weight: 700;
    margin-bottom: 0;
    background: linear-gradient(135deg, #ffffff 0%, #ea62d6 30%, #d147c1 60%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 25px rgba(234, 98, 214, 0.7), 0 0 50px rgba(209, 71, 193, 0.4);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
    white-space: nowrap;
}

.hero-page .hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Projects Section */
.projects-section {
    padding: 0 5% 3rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.project-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.8s ease;
}

.project-card:hover {
    transform: translateY(-3px);
    border-color: rgba(234, 98, 214, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.project-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    transition: all 0.8s ease;
    display: inline-block;
}

.project-card:hover .project-icon {
    color: var(--primary-color);
}

.project-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.project-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Videos Section */
.videos-section {
    padding: 3rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.video-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.video-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Why Us Section */
.why-us-section {
    padding: 3rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.why-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.why-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Collaborators Section */
.collaborators-section {
    padding: 2rem 5% 3rem 5%;
    background: var(--bg-color);
}

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

.collaborator-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid rgba(234, 98, 214, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    opacity: 1;
}

.collaborator-card:hover {
    transform: translateY(-5px);
    border-color: rgba(234, 98, 214, 0.3);
    box-shadow: 0 10px 30px rgba(234, 98, 214, 0.1);
}

.collaborator-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    border-bottom: 3px solid rgba(234, 98, 214, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.collaborator-card:hover .collaborator-image {
    border-color: rgba(234, 98, 214, 0.6);
    transform: scale(1.05);
}

.collaborator-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    border-radius: 20px 20px 0 0;
}


.collaborator-name {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

/* Footer */
footer {
    background: var(--card-bg);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0;
    margin-top: 4rem;
}

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

/* Logo principal del footer */
.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.footer-main-logo {
    width: 40px;
    height: 40px;
}

.footer-logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-color);
}

/* Secciones del footer */
.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-section h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

/* Afiliados */
.affiliates-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.affiliate-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.affiliate-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.affiliate-item:hover .affiliate-icon {
    filter: brightness(1);
}

.affiliate-item span {
    color: var(--text-gray);
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.2;
}

/* Línea divisoria */
.footer-divider {
    height: 1px;
    background: var(--border-color);
    margin: 2rem 0;
}

/* Parte inferior del footer */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copyright p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Créditos */
.footer-credits {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hosting-credit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hosting-credit span {
    color: var(--text-gray);
    font-size: 0.8rem;
}

.hosting-logo-small {
    max-width: 80px;
    height: auto;
    filter: grayscale(100%) brightness(1.2);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.hosting-logo-small:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

.developer-credit span,
.special-thanks span {
    color: var(--text-gray);
    font-size: 0.8rem;
}

.developer-credit strong,
.special-thanks strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Iconos sociales */
.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: var(--text-gray);
    transition: color 0.3s ease;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary-color);
    background: rgba(234, 98, 214, 0.1);
}

/* ===== RESPONSIVE DESIGN MEJORADO - MOBILE FIRST ===== */

/* Mobile Navigation Hamburger Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1002;
}

.mobile-menu-toggle:hover {
    background: rgba(234, 98, 214, 0.1);
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    transform-origin: center;
    border-radius: 1px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
}

/* Mobile Navigation Menu */
.mobile-nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(20, 20, 20, 0.98) 100%);
    backdrop-filter: blur(20px);
    z-index: 1001;
    padding: 80px 2rem 2rem;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(234, 98, 214, 0.2);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
}

.mobile-nav-menu.active {
    right: 0;
}

.mobile-nav-menu .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-menu .nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: block;
}

.mobile-nav-menu .nav-links a:hover {
    color: var(--primary-color);
    padding-left: 1rem;
    border-bottom-color: rgba(234, 98, 214, 0.3);
}

.mobile-nav-menu .nav-links a:last-child {
    border-bottom: none;
}

/* Social icons in mobile menu */
.mobile-social-icons {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.mobile-social-icons .social-icon {
    padding: 0.8rem;
    background: rgba(234, 98, 214, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-social-icons .social-icon:hover {
    background: rgba(234, 98, 214, 0.2);
    transform: translateY(-2px);
}

/* Extra Small Devices (phones, 320px and up) */
@media (max-width: 480px) {
    .top-bar {
        padding: 0.5rem 0;
    }
    
    .top-bar-content {
        padding: 0 1rem;
        grid-template-columns: auto 1fr auto;
        justify-items: start;
        gap: 1rem;
    }
    
    .top-bar-left {
        gap: 1rem;
    }
    
    .top-bar-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .top-bar-center {
        justify-self: center;
    }
    
    .top-bar-actions {
        justify-self: end;
    }
    
    .social-icons {
        gap: 0.3rem;
    }
    
    .social-icon {
        padding: 0.3rem;
    }
    
    .hero {
        padding: 100px 1rem 30px;
        min-height: 90vh;
    }
    
    .hero-content {
        padding: 1rem;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 0.8rem;
        white-space: normal;
        text-align: center;
        width: 100%;
        overflow: visible;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-info-container {
        flex-direction: column;
        gap: 1.5rem;
        padding-left: 0;
        text-align: center;
    }
    
    .hero-logo {
        width: 100px;
        height: 100px;
        margin-left: 0;
    }
    
    .hero-text-box {
        max-width: 100%;
        margin: 0;
    }
    
    .hero-text-box p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
    
    .feature-item {
        font-size: 0.85rem;
        justify-content: center;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-large-logo {
        width: 200px;
        height: 200px;
    }
}

/* Small Devices (landscape phones, 481px and up) */
@media (min-width: 481px) and (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .top-bar-nav {
        display: none;
    }
    
    .hero {
        padding: 110px 2rem 40px;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-info-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-logo {
        width: 140px;
        height: 140px;
        margin-left: 0;
    }
    
    .hero-text-box p {
        font-size: 1rem;
    }
    
    .brief-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .highlight-item {
        justify-content: center;
    }
}

/* Medium Devices (tablets, 769px and up) */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-info-container {
        gap: 2rem;
    }
    
    .hero-logo {
        width: 200px;
        height: 200px;
    }
    
    .contact-container {
        gap: 3rem;
    }
}

/* Main Mobile Breakpoint */
@media (max-width: 768px) {
    /* Enable mobile navigation */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav-overlay,
    .mobile-nav-menu {
        display: block;
    }
    
    .top-bar-nav {
        display: none;
    }
    
    /* Hero section mobile optimization */
    .hero {
        padding: 110px 1.5rem 40px;
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
        min-height: 85vh;
    }
    
    .hero-content {
        padding: 1.5rem;
        backdrop-filter: blur(3px);
        background: rgba(0, 0, 0, 0.15);
        border-radius: 16px;
        max-width: 100%;
    }
    
    /* Top Bar responsive */
    .top-bar-content {
        padding: 0 1rem;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 1rem;
    }
    
    .top-bar-left {
        justify-self: start;
        gap: 1rem;
    }
    
    .top-bar-center {
        justify-self: center;
    }
    
    .top-bar-actions {
        justify-self: end;
        gap: 0.5rem;
    }
    
    .social-icons {
        gap: 0.2rem;
    }
    
    .social-icon {
        padding: 0.4rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        white-space: normal;
        word-break: break-word;
        text-align: center;
    }
    
    .hero-info-container {
        flex-direction: column;
        gap: 2rem;
        padding-left: 0;
        justify-content: center;
        align-items: center;
    }
    
    .hero-logo {
        width: 120px;
        height: 120px;
        margin-left: 0;
    }
    
    .hero-text-box {
        padding: 0;
        max-width: 100%;
        margin: 0;
        text-align: center;
    }
    
    .hero-text-box p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .modern-cta-button {
        font-size: 1rem;
        text-align: center;
        display: block;
        margin: 1.5rem auto 0;
        padding: 1rem 0;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        margin-top: 1.5rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
        justify-content: center;
        text-align: center;
    }
    
    /* Brief about section mobile */
    .brief-about-section {
        padding: 3rem 0;
    }
    
    .brief-intro {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .brief-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .highlight-item {
        justify-content: center;
        text-align: center;
        padding: 1.2rem;
    }
    
    .kofi-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .kofi-title {
        font-size: 1.5rem;
    }
    
    .kofi-description {
        font-size: 1rem;
    }
    
    .kofi-button {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}

/* Contact Page Styles */
.contact-hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.contact-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-large-logo {
    width: 400px;
    height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(234, 98, 214, 0.2));
    transition: filter 0.3s ease;
    cursor: pointer;
}

.contact-large-logo:hover {
    filter: drop-shadow(0 0 40px rgba(234, 98, 214, 0.8)) 
            drop-shadow(0 0 80px rgba(234, 98, 214, 0.6))
            drop-shadow(0 0 120px rgba(234, 98, 214, 0.4));
}

.contact-content {
    color: white;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.contact-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-text p {
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

.highlight-green {
    color: #ea62d6;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(234, 98, 214, 0.5);
}


.contact-options {
    margin-top: 3rem;
}

.contact-options h2 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(234, 98, 214, 0.3);
    transform: translateY(-2px);
}

.contact-method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ea62d6, #d147c1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method-icon svg {
    color: white;
}

.contact-method-info h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-method-info a {
    color: #ea62d6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    text-shadow: 0 0 5px rgba(234, 98, 214, 0.3);
}

.contact-method-info a:hover {
    color: #d147c1;
    text-shadow: 0 0 8px rgba(234, 98, 214, 0.5);
}

/* Responsive Design for Contact Page */
@media (max-width: 1200px) {
    .contact-large-logo {
        width: 300px;
        height: 300px;
    }
    
    .contact-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-large-logo {
        width: 250px;
        height: 250px;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-text {
        font-size: 1rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .hero-title-with-logo {
        flex-direction: row;
        gap: 0.8rem;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }
    
    .title-logo {
        width: 50px;
        height: 50px;
    }
    
    .hero-page .hero-title {
        font-size: 2rem;
        line-height: 1.1;
        white-space: normal;
        word-break: break-word;
        text-align: center;
    }
    
    .hero-page .hero-subtitle {
        font-size: 1rem;
        line-height: 1.4;
        text-align: center;
        margin-top: 1rem;
    }
    
    /* Footer responsive */
    .footer-sections {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-credits {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .hero-description {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-text {
        text-align: left;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .about-intro {
        font-size: 1.2rem !important;
    }
    
    .about-mission {
        font-size: 1.1rem !important;
        padding: 1.5rem;
    }
    
    .brief-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .highlight-item {
        justify-content: flex-start;
        text-align: left;
    }
    
    .affiliates-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .affiliate-logo {
        width: 150px;
        height: 150px;
    }
    
    .collaborators-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
    }
    
    .collaborator-name {
        font-size: 1rem;
        padding: 0.8rem 0.8rem 0.6rem 0.8rem;
    }
    
    .projects-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) and (max-height: 800px) {
    .hero {
        padding: 80px 5% 30px 5%;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

/* SVG Icons */
.icon {
    width: 2rem;
    height: 2rem;
    stroke: #ea62d6;
    fill: none;
}

.inline-icon {
    width: 18px;
    height: 18px;
    fill: rgba(234, 98, 214, 0.9);
    vertical-align: middle;
    margin-right: 0.6rem;
    filter: drop-shadow(0 0 4px rgba(234, 98, 214, 0.3));
}

.hero-text-box .inline-icon {
    width: 20px;
    height: 20px;
    fill: rgba(234, 98, 214, 1);
    filter: drop-shadow(0 0 6px rgba(234, 98, 214, 0.4));
}

.project-icon .icon,
.video-icon .icon,
.why-icon .icon {
    width: 2rem;
    height: 2rem;
    stroke: #ea62d6;
    fill: none;
}

/* ===== CROSS-PLATFORM COMPATIBILITY ===== */

/* Webkit (Safari, Chrome) */
@supports (-webkit-appearance: none) {
    .hero {
        background-size: cover;
        -webkit-background-size: cover;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }
    
    .hero-title {
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

/* Firefox */
@-moz-document url-prefix() {
    .hero {
        background-attachment: scroll;
    }
    
    .hero-title {
        background-clip: text;
        color: transparent;
    }
}

/* Edge/IE */
@supports (-ms-ime-align: auto) {
    .hero {
        background-attachment: scroll;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-logo,
    .contact-large-logo,
    .top-bar-home-logo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #000000;
        --text-color: #ffffff;
        --card-bg: #0a0a0a;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero {
        background-attachment: scroll;
    }
    
    .float-animation,
    .pulse-animation,
    .typewriter {
        animation: none;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Ensure all interactive elements are touch-friendly (44px minimum) */
    .collaborator-card,
    .affiliate-card,
    .project-card,
    .credit-card {
        transform: none;
        transition: background-color 0.3s ease;
    }
    
    .collaborator-card:active,
    .affiliate-card:active,
    .project-card:active,
    .credit-card:active {
        background-color: rgba(234, 98, 214, 0.1);
    }
    
    .social-icon,
    .contact-method,
    .mobile-menu-toggle,
    .modern-cta-button {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Improve button spacing for touch */
    .mobile-nav-menu .nav-links a {
        padding: 1.2rem 0;
        font-size: 1.2rem;
    }
    
    .mobile-social-icons .social-icon {
        padding: 1rem;
        margin: 0.2rem;
    }
    
    /* Remove hover effects on touch devices */
    .hero-logo,
    .contact-large-logo {
        animation: none;
    }
    
    /* Improve form elements for touch */
    input, button, select, textarea {
        min-height: 44px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Better tap targets for navigation */
    .top-bar-logo-link {
        padding: 0.5rem;
        margin: -0.5rem;
    }
}

/* Landscape Orientation */
@media (orientation: landscape) and (max-height: 600px) {
    .hero {
        min-height: 80vh;
        padding: 60px 5% 20px 5%;
        background-attachment: scroll;
        background-position: center center;
        background-size: cover;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-info-container {
        flex-direction: row;
        gap: 2rem;
        justify-content: center;
        align-items: center;
    }
    
    .hero-logo {
        width: 100px;
        height: 100px;
    }
    
    .hero-text-box p {
        font-size: 0.9rem;
    }
}

/* Portrait Orientation Mobile Fixes */
@media (orientation: portrait) and (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        background-position: center top;
        background-size: cover;
        min-height: 100vh;
    }
}

/* Specific fix for vertical mobile devices */
@media (max-width: 480px) and (orientation: portrait) {
    .hero {
        background-attachment: scroll;
        background-position: center 20%;
        background-size: 120% auto;
        min-height: 100vh;
    }
}

/* Print Styles */
@media print {
    .top-bar,
    .social-icons,
    .footer-social {
        display: none;
    }
    
    .hero {
        background: none;
        color: black;
    }
    
    .hero-title {
        color: black;
        text-shadow: none;
    }
}

/* Utility classes */
.fade-in {
    opacity: 1;
}

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

/* Mobile-specific utility classes */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    /* Hide desktop-only elements on mobile */
    .desktop-only {
        display: none !important;
    }
    
    /* Show mobile-only elements */
    .mobile-only {
        display: block !important;
    }
    
    /* Mobile text sizing */
    .mobile-text-sm {
        font-size: 0.9rem;
    }
    
    .mobile-text-lg {
        font-size: 1.1rem;
    }
    
    /* Mobile spacing utilities */
    .mobile-mt-sm {
        margin-top: 1rem;
    }
    
    .mobile-mt-md {
        margin-top: 2rem;
    }
    
    .mobile-p-sm {
        padding: 1rem;
    }
}

/* OS-Specific Scrollbar Styles */
/* Webkit (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--bg-color);
}

/* ===== ABOUT US PAGE STYLES - MINIMAL ===== */

.about-content-minimal {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

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

.about-main h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(234, 98, 214, 0.2);
    padding-bottom: 0.5rem;
}

.about-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.about-main p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Services Section */
.services-minimal {
    margin-bottom: 3rem;
}

.services-minimal h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services-list {
    list-style: none;
    padding: 0;
}

.services-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(234, 98, 214, 0.1);
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding-left: 1.5rem;
}

.services-list li::before {
    content: '▸';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.services-list li:last-child {
    border-bottom: none;
}

/* Mission Section */
.mission-minimal {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(234, 98, 214, 0.05);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 8px 8px 0;
}

.mission-minimal h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.mission-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin: 0;
}

/* Experience Section */
.experience-minimal {
    margin-bottom: 3rem;
}

.experience-minimal h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.project-type {
    padding: 1.5rem;
    border: 1px solid rgba(234, 98, 214, 0.2);
    border-radius: 8px;
    background: rgba(234, 98, 214, 0.03);
}

.project-type h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.8rem;
}

.project-type p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* Responsive Design for Minimal About Page */
@media (max-width: 768px) {
    .about-content-minimal {
        padding: 1.5rem 0;
    }
    
    .about-main h2 {
        font-size: 1.8rem;
    }
    
    .project-types {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .mission-minimal {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-main h2 {
        font-size: 1.6rem;
    }
    
    .services-minimal h3,
    .mission-minimal h3,
    .experience-minimal h3 {
        font-size: 1.3rem;
    }
    
    .project-type {
        padding: 1rem;
    }
}
