/* Reset and basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    background: #000000;
    min-height: 100vh;
    overflow-x: hidden;
}

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

.container-wide {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Navigation */
.nav-bar {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease-in-out;
}

.nav-bar.hidden {
    transform: translateY(-100%);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}

.logo-image {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

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

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

.nav-link {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 25px;
    position: relative;
}

.nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    color: white;
    background: linear-gradient(135deg, #FF0046, #FF6B6B);
}

/* Hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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



/* Hero section */
.hero {
    background: #000000;
    color: white;
    text-align: center;
    padding: 140px 0 100px;
    margin: 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 700px;
    background: radial-gradient(ellipse at center, rgba(255, 0, 70, 0.8) 0%, rgba(255, 0, 70, 0.4) 30%, rgba(255, 0, 70, 0.1) 60%, transparent 80%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(20px);
}

/* Removed light effect animations */

/* Removed floating animation */

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    flex: 1;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.logo-icon {
    font-size: 4rem;
    animation: pulse 2s infinite;
}

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

.title {
    font-size: 7rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    background: linear-gradient(45deg, #FFFFFF, #FFE5E5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 2rem;
    font-weight: 600;
    opacity: 0.95;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.animated-stat {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-content {
    position: relative;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    opacity: 1;
}

.stat-label {
    font-size: 1.4rem;
    font-weight: 500;
    opacity: 0.9;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    opacity: 1;
}

/* Animation states */
.stat-content.changing .stat-number {
    transform: translateY(-20px);
    opacity: 0;
}

.stat-content.changing .stat-label {
    transform: translateY(20px);
    opacity: 0;
}

.stat-content.new .stat-number {
    transform: translateY(20px);
    opacity: 0;
}

.stat-content.new .stat-label {
    transform: translateY(-20px);
    opacity: 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Removed floating cards */

/* Sekcie */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(45deg, #FF0046, #FF6B6B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #FF0046, #FF6B6B);
    border-radius: 2px;
}

/* Ako to funguje */
.how-it-works {
    padding: 72px 0;
    margin-bottom: 64px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 30px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    border: 1px solid rgba(255, 0, 70, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF0046, #FF6B6B);
}

.step:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 0, 70, 0.4);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #FF0046, #FF6B6B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(255, 0, 70, 0.4);
}

.step h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0 0 15px 0;
    text-align: center;
    line-height: 1.3;
}

.step p {
    color: #B8B8B8;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

    /* Main features */
.features {
    padding: 72px 0;
    margin-bottom: 64px;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 34px 26px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 0, 70, 0.2);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF0046, #FF6B6B);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 0, 70, 0.4);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.feature-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.feature-card p {
    color: #B8B8B8;
    font-size: 1.1rem;
    line-height: 1.6;
}

    /* Challenge examples */
.challenge-examples {
    padding: 72px 0;
    margin-bottom: 64px;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.challenge-example {
    background: rgba(255, 255, 255, 0.05);
    padding: 26px;
    border-radius: 25px;
    border: 1px solid rgba(255, 0, 70, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.challenge-example:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.challenge-category {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.challenge-category.sport {
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
    color: white;
}

.challenge-category.creative {
    background: linear-gradient(45deg, #9C27B0, #E91E63);
    color: white;
}

.challenge-category.adventure {
    background: linear-gradient(45deg, #FF9800, #FF5722);
    color: white;
}

.challenge-example h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.challenge-example p {
    color: #B8B8B8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.difficulty {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.difficulty.easy {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.difficulty.medium {
    background: rgba(255, 152, 0, 0.2);
    color: #FF9800;
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.difficulty.hard {
    background: rgba(244, 67, 54, 0.2);
    color: #F44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

/* CTA sekcia */
.cta-section {
    background: linear-gradient(135deg, #2F1930 0%, #451f3d 100%);
    padding: 70px 36px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 64px;
    border: 1px solid rgba(255, 0, 70, 0.3);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFADAD, #FF0046, #FFD6A5);
    border-radius: 30px 30px 0 0;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #FFFFFF;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.3rem;
    color: #B8B8B8;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 200px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #FF0046 0%, #FF6B6B 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 0, 70, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 70, 0.6);
}

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

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

.cta-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #333;
    border-radius: 2px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    border-radius: 25px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.app-preview {
    text-align: center;
    color: white;
}

.app-header {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.daily-challenge h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    opacity: 0.9;
}

.daily-challenge p {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.app-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.app-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 0, 70, 0.2);
    backdrop-filter: blur(20px);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.footer-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.footer-section p {
    color: #B8B8B8;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #B8B8B8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FF0046;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 0, 70, 0.2);
    color: #888;
}

    /* Responsive design */
@media (max-width: 1200px) {
    .cta-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 1024px) {
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.95rem;
    }
    
    .step {
        padding: 30px 20px;
    }
    
    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }
    
    .step-icon {
        font-size: 2.8rem;
    }
    
    .step h3 {
        font-size: 1.3rem;
    }
    
    .step p {
        font-size: 1rem;
    }
}

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

    .step {
        min-height: auto;
        padding: 25px 20px;
    }

    .title {
        font-size: 4rem;
    }
    
    .subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero {
        padding: 120px 20px 60px;
        min-height: auto;
    }
    
    /* Mobile background adjustment */
    .hero::before {
        width: 700px;
        height: 500px;
    }
    
    .hero-stats {
        margin-bottom: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .step {
        padding: 25px 15px;
        margin-bottom: 20px;
    }
    
    .step-title-row {
        margin-bottom: 20px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        margin: 0 auto 15px;
    }
    
    .step-icon {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .step h3 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .step p {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .challenges-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .cta-section {
        padding: 60px 20px;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
    }
}

@media (max-width: 768px) {
    /* Hamburger menu for tablets and mobile */
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        padding: 15px 20px;
        margin: 5px 0;
        border-radius: 10px;
        text-align: center;
        font-size: 1.1rem;
    }
    
    .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .title {
        font-size: 3rem;
    }
    
    .hero {
        padding: 100px 15px 40px;
        border-radius: 0 0 25px 25px;
    }
    
    .hero-stats {
        margin-bottom: 25px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .step {
        padding: 20px 12px;
        margin-bottom: 15px;
    }
    
    .step-title-row {
        margin-bottom: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin: 0 auto 12px;
    }
    
    .step-icon {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .step h3 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .step p {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .hero::before {
        width: 500px;
        height: 400px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Removed floating card styles */
    
    .cta-section {
        padding: 40px 15px;
        border-radius: 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
    
    /* Navigation responsive */
    .nav-content {
        padding: 0 15px;
    }
    

}

/* About section styles */
.about-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
    margin: 60px 0;
}

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

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #FF0046, #FF8E8E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #d1d5db;
    margin-bottom: 20px;
}

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

/* Get in touch section styles */
.get-in-touch {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 0, 70, 0.1), rgba(255, 142, 142, 0.1));
    border-radius: 30px;
    margin: 60px 0;
}

.get-in-touch-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.get-in-touch-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FF0046, #FF8E8E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.get-in-touch-content p {
    font-size: 1.2rem;
    color: #d1d5db;
    margin-bottom: 30px;
}

.contact-btn {
    font-size: 1.1rem;
    padding: 15px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 0, 70, 0.3);
}

/* Responsive styles for new sections */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
        margin: 40px 0;
        border-radius: 20px;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
    
    .about-text {
        font-size: 1.1rem;
    }
    
    .get-in-touch {
        padding: 60px 0;
        margin: 40px 0;
        border-radius: 20px;
    }
    
    .get-in-touch-content h2 {
        font-size: 2rem;
    }
    
    .get-in-touch-content p {
        font-size: 1.1rem;
    }
    
    .contact-btn {
        font-size: 1rem;
        padding: 12px 30px;
    }
}

/* Removed mobile light effect */

/* Removed all mobile light effects */

/* About Us page styles */
.about-hero {
    background: #000000;
    color: white;
    text-align: center;
    padding: 140px 0 100px;
    margin: 0;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(255, 0, 70, 0.6) 0%, rgba(255, 0, 70, 0.3) 30%, rgba(255, 0, 70, 0.1) 60%, transparent 80%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(20px);
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.about-hero-title {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    background: linear-gradient(45deg, #FFFFFF, #FFE5E5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    opacity: 0.9;
    color: #d1d5db;
}

.our-story {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
    margin: 60px 0;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.story-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #d1d5db;
    margin-bottom: 25px;
    text-align: left;
}

.story-text p:last-child {
    margin-bottom: 0;
}

.team-section {
    padding: 80px 0;
    margin: 60px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    border: 1px solid rgba(255, 0, 70, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF0046, #FF6B6B);
}

.team-member:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 0, 70, 0.4);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.member-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.team-member h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.team-member p {
    color: #B8B8B8;
    font-size: 1.1rem;
    line-height: 1.6;
}

.development-journey {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 0, 70, 0.1), rgba(255, 142, 142, 0.1));
    border-radius: 30px;
    margin: 60px 0;
}

.journey-content {
    max-width: 1000px;
    margin: 0 auto;
}

.journey-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #FF0046, #FF6B6B);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    position: relative;
    padding-left: 80px;
}

.timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #FF0046, #FF6B6B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 0, 70, 0.4);
    z-index: 2;
}

.timeline-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.timeline-content p {
    color: #B8B8B8;
    font-size: 1.1rem;
    line-height: 1.6;
}

.mission-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
    margin: 60px 0;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.mission-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #d1d5db;
    margin-bottom: 25px;
    text-align: left;
}

.mission-text p:last-child {
    margin-bottom: 0;
}

/* About Us responsive styles */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 4rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .about-hero {
        padding: 120px 20px 60px;
        min-height: 50vh;
    }
    
    .about-hero::before {
        width: 500px;
        height: 350px;
    }
    
    .our-story, .team-section, .development-journey, .mission-section {
        padding: 60px 0;
        margin: 40px 0;
        border-radius: 20px;
    }
    
    .story-content, .mission-content {
        padding: 0 15px;
    }
    
    .story-text p, .mission-text p {
        font-size: 1.1rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-member {
        padding: 30px 20px;
    }
    
    .journey-timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
    }
    
    .timeline-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 3rem;
    }
    
    .about-hero {
        padding: 100px 15px 40px;
    }
    
    .about-hero::before {
        width: 400px;
        height: 300px;
    }
    
    .our-story, .team-section, .development-journey, .mission-section {
        padding: 40px 0;
        margin: 30px 0;
    }
    
    .story-text p, .mission-text p {
        font-size: 1rem;
    }
    
    .team-member {
        padding: 25px 15px;
    }
    
    .member-icon {
        font-size: 3rem;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Contact page styles */
.contact-content {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
    margin: 60px 0;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #FF0046, #FF8E8E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.email-container {
    margin-bottom: 40px;
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    background: linear-gradient(135deg, #FF0046, #FF6B6B);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 0, 70, 0.4);
    position: relative;
    overflow: hidden;
}

.email-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.email-link:hover::before {
    left: 100%;
}

.email-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 70, 0.6);
}

.email-link i {
    font-size: 1.5rem;
}

.contact-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #d1d5db;
    max-width: 500px;
    margin: 0 auto;
}

/* Contact page responsive styles */
@media (max-width: 768px) {
    .contact-content {
        padding: 60px 0;
        margin: 40px 0;
        border-radius: 20px;
    }
    
    .contact-info h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .email-link {
        font-size: 1.1rem;
        padding: 15px 30px;
    }
    
    .contact-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .contact-content {
        padding: 40px 0;
        margin: 30px 0;
    }
    
    .contact-info h2 {
        font-size: 1.8rem;
    }
    
    .email-link {
        font-size: 1rem;
        padding: 12px 25px;
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-description {
        font-size: 1rem;
    }
}
