:root {
    --primary-color: #00FF9D;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #010B0B;
    --background-color: #010B0B;
    --text-color: #849A9A;
    --text-color-hover: #ffffff;
    --card-bg: rgba(10, 15, 26, 0.7);
    --card-border: rgba(0, 255, 157, 0.2);
    --card-shadow: 0 4px 20px rgba(0, 255, 157, 0.1);
    
    --color-bg1: rgb(50, 0, 80);
    --color-bg2: rgb(0, 5, 30);
    --color1: 18, 113, 255;
    --color2: 221, 74, 255;
    --color3: 100, 220, 255;
    --color4: 200, 50, 50;
    --color5: 180, 180, 50;
    --color-interactive: 140, 100, 255;
    --circle-size: 80%;
    --blending: hard-light;
}

.gradient-bg {
    width: 100%;
    height: 100vh;
    position: fixed;
    overflow: hidden;
    background: linear-gradient(40deg, var(--color-bg1), var(--color-bg2));
    top: 0;
    left: 0;
    z-index: 0;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 70%, rgba(0,0,0,0));
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 70%, rgba(0,0,0,0));
}

.gradient-bg svg {
    display: none;
}

.gradients-container {
    filter: url(#goo) blur(40px);
    width: 100%;
    height: 100%;
    z-index: 0;
}

.g1 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color1), 0.8) 0, rgba(var(--color1), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);
    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2);
    left: calc(50% - var(--circle-size) / 2);
    transform-origin: center center;
    animation: moveVertical 30s ease infinite;
    opacity: 1;
}

.g2 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color2), 0.8) 0, rgba(var(--color2), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);
    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2);
    left: calc(50% - var(--circle-size) / 2);
    transform-origin: calc(50% - 400px);
    animation: moveInCircle 20s reverse infinite;
    opacity: 1;
}

.g3 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color3), 0.8) 0, rgba(var(--color3), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);
    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2 + 200px);
    left: calc(50% - var(--circle-size) / 2 - 500px);
    transform-origin: calc(50% + 400px);
    animation: moveInCircle 40s linear infinite;
    opacity: 1;
}

.g4 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color4), 0.8) 0, rgba(var(--color4), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);
    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2);
    left: calc(50% - var(--circle-size) / 2);
    transform-origin: calc(50% - 200px);
    animation: moveHorizontal 40s ease infinite;
    opacity: 0.7;
}

.g5 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color5), 0.8) 0, rgba(var(--color5), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);
    width: calc(var(--circle-size) * 2);
    height: calc(var(--circle-size) * 2);
    top: calc(50% - var(--circle-size));
    left: calc(50% - var(--circle-size));
    transform-origin: calc(50% - 800px) calc(50% + 200px);
    animation: moveInCircle 20s ease infinite;
    opacity: 1;
}

.interactive {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color-interactive), 0.8) 0, rgba(var(--color-interactive), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);
    width: 100%;
    height: 100%;
    top: -50%;
    left: -50%;
    opacity: 0.7;
}

.ai-hero-section {
    margin-top: -100px;
    padding: 80px 15px;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    background: rgba(1, 11, 11, 0.3);
}

.ai-hero-section .container {
    position: relative;
    z-index: 10;
    padding: 30px;
    border-radius: 15px;
}

.hero-title {
    color: #ffffff !important;
    font-size: 48px !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
}

.hero-description {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 30px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.performance-comparison-section,
.component-selector-section,
.optimization-features-section,
.testimonials-section {
    background: rgba(1, 11, 11, 0.3);
    position: relative;
    z-index: 2;
}

.cta-section {
    background: linear-gradient(to bottom,rgba(1, 11, 11, 0.3), transparent);
    position: relative;
    z-index: 2;
}

.container {
    position: relative;
    z-index: 3;
}

.comparison-card,
.component-group,
.feature-card,
.testimonial-card,
.performance-result {
    position: relative;
    z-index: 4;
}

.hero-button,
.component-selector,
.boost-circle,
.boost-detail-item {
    position: relative;
    z-index: 5;
}

@keyframes moveInCircle {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes moveVertical {
    0% {
        transform: translateY(-50%);
    }
    50% {
        transform: translateY(50%);
    }
    100% {
        transform: translateY(-50%);
    }
}

@keyframes moveHorizontal {
    0% {
        transform: translateX(-50%) translateY(-10%);
    }
    50% {
        transform: translateX(50%) translateY(10%);
    }
    100% {
        transform: translateX(-50%) translateY(-10%);
    }
}

.section-title {
    font-size: 40px !important;
    font-weight: 700 !important;
    background: linear-gradient(78deg, #FFFFFF, #CECECE);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: gradientAnimation 3s ease infinite;
    background-size: 200% 200%;
    text-align: center;
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px !important;
    color: #ffffff !important;
    text-align: center;
    margin-bottom: 40px;
}

.performance-comparison-section {
    padding: 80px 0;
}

.comparison-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.comparison-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    width: 350px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 255, 157, 0.2);
}

.comparison-card h3 {
    color: var(--text-color-hover);
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.comparison-vs {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(78deg, #00FF9D, #00995E);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 157, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 255, 157, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 157, 0);
    }
}

.fps-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 30px;
}

.fps-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-color-hover);
    margin-right: 5px;
    transition: all 0.3s ease;
}

.fps-label {
    font-size: 24px;
    color: var(--text-color);
}

.progress-container {
    margin-bottom: 25px;
}

.progress-label {
    color: var(--text-color);
    margin-bottom: 8px;
    font-size: 16px;
}

.progress {
    height: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.progress-bar {
    transition: width 1.5s ease-in-out;
    position: relative;
}

.progress-bar::after {
    content: attr(aria-valuenow) '%';
    position: absolute;
    right: 8px;
    color: var(--dark-color);
    font-size: 12px;
    font-weight: 700;
    line-height: 15px;
}

.component-selector-section {
    padding: 80px 0;
}

.component-selector-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.component-group {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 20px;
    width: 250px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--card-border);
}

.component-group h3 {
    color: var(--text-color-hover);
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center;
}

.component-selector {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: var(--text-color-hover);
    font-size: 14px;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300FF9D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    cursor: pointer;
}

.component-selector:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 255, 157, 0.3);
}

.component-selector option {
    background-color: #010B0B;
    color: var(--text-color-hover);
    padding: 10px;
}

.performance-result {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--card-border);
    text-align: center;
}

.performance-result h3 {
    color: var(--text-color-hover);
    font-size: 24px;
    margin-bottom: 20px;
}

.boost-display {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.boost-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(78deg, #00FF9D, #00995E);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    box-shadow: 0 0 30px rgba(0, 255, 157, 0.5);
    animation: pulse 2s infinite;
}

.boost-value {
    font-size: 36px;
    font-weight: 700;
}

.boost-label {
    font-size: 16px;
    font-weight: 500;
}

.boost-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.boost-detail-item {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    min-width: 250px;
}

.boost-detail-item i {
    font-size: 24px;
    margin-right: 15px;
    color: var(--primary-color);
}

.boost-detail-item span {
    color: var(--text-color);
    font-size: 14px;
}

.boost-detail-item strong {
    color: var(--text-color-hover);
    margin-left: 5px;
}

.optimization-features-section {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 255, 157, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(78deg, #00FF9D, #00995E);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--dark-color);
    font-size: 30px;
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.3);
}

.feature-card h3 {
    color: var(--text-color-hover);
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.6;
}

.testimonials-section {
    padding: 80px 0;
    background: rgba(1, 11, 11, 0.3);
}

.testimonials-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    width: 350px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 255, 157, 0.2);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(78deg, #00FF9D, #00995E);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--dark-color);
    font-size: 24px;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-info h4 {
    color: var(--text-color-hover);
    font-size: 16px;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-color);
    font-size: 14px;
    margin: 0;
}

.cta-section {
    padding: 80px 0;
    text-align: center;
}

.hero-button {
    margin: 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@media (max-width: 768px) {
    .comparison-container {
        flex-direction: column;
    }
    
    .comparison-vs {
        margin: 20px 0;
    }
    
    .component-selector-container {
        flex-direction: column;
        align-items: center;
    }
    
    .component-group {
        width: 100%;
        max-width: 350px;
    }
    
    .boost-details {
        flex-direction: column;
        align-items: center;
    }
    
    .boost-detail-item {
        width: 100%;
        max-width: 350px;
    }
    
    .testimonials-slider {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-card {
        width: 100%;
        max-width: 350px;
    }
    
    .section-title {
        font-size: 30px !important;
    }
    
    .section-description {
        font-size: 16px !important;
    }
}

@keyframes progressAnimation {
    0% {
        width: 0;
    }
    100% {
        width: var(--target-width);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fpsFluctuation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.fps-fluctuating {
    animation: fpsFluctuation 2s infinite;
} 