.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    animation: containerFadeIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

@keyframes containerFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(1px);
    }
    60% {
        opacity: 0.8;
        transform: translateY(-5px);
        filter: blur(0px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0px);
    }
}

.about-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
            radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.08) 0%, transparent 40%),
            radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.08) 0%, transparent 40%),
            radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 30%);
    animation: backgroundFloat 25s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    pointer-events: none;
    z-index: -1;
    will-change: transform;
}

@keyframes backgroundFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-15px, -25px) rotate(90deg); }
    50% { transform: translate(-30px, -10px) rotate(180deg); }
    75% { transform: translate(25px, -15px) rotate(270deg); }
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    animation: headerSlideIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}

@keyframes headerSlideIn {
    from {
        opacity: 0;
        transform: translateY(-40px);
        filter: blur(1px);
    }
    60% {
        opacity: 0.8;
        transform: translateY(5px);
        filter: blur(0px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0px);
    }
}

.about-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--karmine-gradient);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: -0.02em;
    position: relative;
    animation: titleGlow 4s cubic-bezier(0.4, 0, 0.6, 1) infinite alternate, titleShift 8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    will-change: filter, background-position;
}

@keyframes titleGlow {
    0% {
        filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.4));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(0, 212, 255, 0.6));
        transform: scale(1.02);
    }
    100% {
        filter: drop-shadow(0 0 35px rgba(0, 212, 255, 0.9));
        transform: scale(1.05);
    }
}

@keyframes titleShift {
    0%, 100% { background-position: 0% 50%; }
    33% { background-position: 100% 50%; }
    66% { background-position: 200% 50%; }
}

.about-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--karmine-gradient);
    border-radius: 2px;
    animation: underlineExpand 3s cubic-bezier(0.4, 0, 0.6, 1) infinite alternate;
    will-change: width, opacity;
}

@keyframes underlineExpand {
    0% { width: 60px; opacity: 0.7; }
    100% { width: 140px; opacity: 1; }
}

.subtitle {
    font-size: 1.375rem;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    animation: subtitleFade 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes subtitleFade {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.about-section {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: sectionSlideIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, box-shadow, border-color;
}

@keyframes sectionSlideIn {
    from {
        opacity: 0;
        transform: translateX(-40px);
        filter: blur(1px);
    }
    60% {
        opacity: 0.8;
        transform: translateX(5px);
        filter: blur(0px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0px);
    }
}

.about-section:nth-child(even) {
    animation: sectionSlideInRight 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes sectionSlideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
        filter: blur(1px);
    }
    60% {
        opacity: 0.8;
        transform: translateX(-5px);
        filter: blur(0px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0px);
    }
}

.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--karmine-gradient);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: var(--radius-xl);
    will-change: opacity;
}

.about-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-section:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    border-color: var(--karmine-blue);
}

.about-section:hover::before {
    opacity: 0.05;
}

.about-section:hover::after {
    left: 100%;
}

.section-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: iconFloat 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 212, 255, 0.3));
    will-change: transform;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-8px) rotate(3deg); }
    50% { transform: translateY(-15px) rotate(-2deg); }
    75% { transform: translateY(-8px) rotate(4deg); }
}

.about-section h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--karmine-gradient);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    animation: headingShimmer 6s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    will-change: background-position;
}

@keyframes headingShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.about-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 2;
    animation: textFadeIn 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes textFadeIn {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    will-change: transform, box-shadow, border-color;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--karmine-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--karmine-gradient);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: var(--radius-lg);
    will-change: opacity;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.3);
    border-color: var(--karmine-blue);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover::after {
    opacity: 0.08;
}

.feature-card h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    background: var(--karmine-gradient);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    animation: cardTitleShimmer 6s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    will-change: background-position;
}

@keyframes cardTitleShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 2;
    transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card:hover p {
    color: var(--text-primary);
}

.warning-section {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.1), rgba(255, 87, 34, 0.1));
    border: 2px solid rgba(255, 152, 0, 0.3);
    box-shadow: 0 8px 32px rgba(255, 152, 0, 0.2);
}

.warning-section .section-icon {
    color: #ff9800;
    animation: warningPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes warningPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 4px 8px rgba(255, 152, 0, 0.3));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 6px 12px rgba(255, 152, 0, 0.5));
    }
}

.warning-content {
    display: grid;
    gap: 1.5rem;
}

.warning-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    border-left: 4px solid #ff9800;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.warning-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(8px);
    border-left-width: 6px;
}

.warning-item h4 {
    color: #ff9800;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.warning-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.values-list {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 2;
}

.values-list li {
    padding: 1rem 0 1rem 2rem;
    border-left: 4px solid var(--karmine-blue);
    margin-bottom: 1rem;
    background: var(--dark-tertiary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    will-change: transform, background;
}

.values-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--karmine-gradient);
    animation: valueGlow 4s cubic-bezier(0.4, 0, 0.6, 1) infinite alternate;
    will-change: box-shadow;
}

@keyframes valueGlow {
    0% { box-shadow: 0 0 8px rgba(0, 212, 255, 0.4); }
    50% { box-shadow: 0 0 15px rgba(0, 212, 255, 0.6); }
    100% { box-shadow: 0 0 25px rgba(0, 212, 255, 0.9); }
}

.values-list li::after {
    content: '✨';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: sparkle 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    will-change: opacity, transform;
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: translateY(-50%) scale(1) rotate(0deg); }
    50% { opacity: 1; transform: translateY(-50%) scale(1.3) rotate(180deg); }
}

.values-list li:hover {
    background: var(--glass-bg);
    transform: translateX(15px) scale(1.02);
    color: var(--text-primary);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
}

.values-list li:hover::after {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
}

.contact-section {
    background: var(--karmine-gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
            radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: contactBackground 10s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    will-change: opacity;
}

@keyframes contactBackground {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.contact-section h3 {
    color: white !important;
    background: none !important;
    -webkit-text-fill-color: white !important;
    position: relative;
    z-index: 2;
    animation: contactTitleGlow 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes contactTitleGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.3); }
    50% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.8); }
}

.contact-section p {
    color: rgba(255, 255, 255, 0.9) !important;
    position: relative;
    z-index: 2;
}

.contact-info {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-top: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, background;
}

.contact-info:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.contact-info p {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: contactInfoFade 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes contactInfoFade {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; }
}

.disclaimer-enhanced {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 152, 0, 0.1));
    border: 2px solid var(--accent-gold);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    animation: disclaimerEntrance 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s both;
}

@keyframes disclaimerEntrance {
    from {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(1px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0px);
    }
}

.disclaimer-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gold);
    animation: disclaimerGlow 3s cubic-bezier(0.4, 0, 0.6, 1) infinite alternate;
    will-change: box-shadow;
}

@keyframes disclaimerGlow {
    0% { box-shadow: 0 0 8px rgba(255, 215, 0, 0.4); }
    100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.9); }
}

.disclaimer-enhanced h3 {
    color: var(--accent-gold);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.disclaimer-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent-gold);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.disclaimer-section:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(8px);
    border-left-width: 6px;
}

.disclaimer-section h4 {
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.disclaimer-section p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.about-section:nth-child(1) { animation-delay: 0.1s; }
.about-section:nth-child(2) { animation-delay: 0.2s; }
.about-section:nth-child(3) { animation-delay: 0.3s; }
.about-section:nth-child(4) { animation-delay: 0.4s; }
.about-section:nth-child(5) { animation-delay: 0.5s; }
.about-section:nth-child(6) { animation-delay: 0.6s; }
.about-section:nth-child(7) { animation-delay: 0.7s; }

.feature-card:nth-child(1) { animation: cardSlideIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s both; }
.feature-card:nth-child(2) { animation: cardSlideIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both; }
.feature-card:nth-child(3) { animation: cardSlideIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both; }
.feature-card:nth-child(4) { animation: cardSlideIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both; }

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
        filter: blur(1px);
    }
    60% {
        opacity: 0.8;
        transform: translateY(-5px) scale(1.05);
        filter: blur(0px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0px);
    }
}

.feature-card.featured {
    border-color: var(--accent-gold);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.3);
    animation: featuredGlow 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes featuredGlow {
    0%, 100% { box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2); }
    50% { box-shadow: 0 16px 48px rgba(255, 215, 0, 0.4); }
}

.feature-card.featured::before {
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-red));
    transform: scaleX(1);
    animation: featuredLine 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes featuredLine {
    0%, 100% { height: 3px; }
    50% { height: 5px; }
}

@media (max-width: 1024px) {
    .about-container {
        padding: 1.5rem;
    }

    .about-section, .disclaimer-enhanced {
        padding: 2rem;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .about-container {
        padding: 1rem;
    }

    .about-header h2 {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-section, .disclaimer-enhanced {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .section-icon {
        font-size: 2.5rem;
    }

    .about-section h3 {
        font-size: 1.5rem;
    }

    .values-list li:hover {
        transform: translateX(10px) scale(1.01);
    }

    .warning-item:hover, .disclaimer-section:hover {
        transform: translateX(6px);
    }
}

@media (max-width: 480px) {
    .about-header h2 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.125rem;
    }

    .about-section, .disclaimer-enhanced {
        padding: 1.25rem;
    }

    .feature-card {
        padding: 1.25rem;
    }

    .section-icon {
        font-size: 2rem;
    }

    .about-section h3 {
        font-size: 1.25rem;
    }

    .values-list li {
        padding: 0.75rem 0 0.75rem 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.15s !important;
    }

    .about-section:hover,
    .feature-card:hover,
    .values-list li:hover,
    .contact-info:hover,
    .warning-item:hover,
    .disclaimer-section:hover {
        transform: none !important;
        box-shadow: none !important;
    }
}

.about-section:focus-within,
.feature-card:focus-within {
    outline: 3px solid var(--karmine-blue);
    outline-offset: 3px;
    animation: focusGlow 1s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes focusGlow {
    0%, 100% { outline-color: var(--karmine-blue); }
    50% { outline-color: var(--accent-gold); }
}

.about-section,
.feature-card,
.values-list li,
.contact-info,
.warning-item,
.disclaimer-section {
    transform: translateZ(0);
    backface-visibility: hidden;
}

@media (hover: hover) {
    .about-section:hover .section-icon {
        animation: iconHover 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    @keyframes iconHover {
        0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
        50% { transform: translateY(-15px) rotate(10deg) scale(1.2); }
    }
}
