:root {
    --primary: #6e44ff;
    --primary-dark: #5933ff;
    --secondary: #ff3d71;
    --tertiary: #00f5d4;
    --dark: #13111c;
    --light: #f8f7ff;
    --gray: #777792;
    --border-radius: 12px;
    --card-shadow: 0 10px 30px rgba(110, 68, 255, 0.15);
    --glow: 0 0 20px rgba(110, 68, 255, 0.4);
}

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

body {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--dark);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(135deg, #f8f7ff 0%, #ededff 100%);
}

code, .code-block, .usage-code {
    font-family: 'JetBrains Mono', monospace;
    border-radius: 8px;
}

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

header {
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--tertiary) 5%, var(--primary) 95%);
    border-radius: 10px;
    margin-right: 15px;
    box-shadow: 0 4px 10px rgba(110, 68, 255, 0.3);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.logo-icon:hover {
    transform: rotate(0deg);
    box-shadow: 0 6px 15px rgba(110, 68, 255, 0.5);
}

.logo-icon i {
    transform: rotate(-45deg);
    font-size: 1.5rem;
    color: white;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
}

.logo:hover .logo-icon {
    transform: rotate(0deg) scale(1.05);
}

.logo span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: all 0.3s;
    padding: 10px 5px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--tertiary) 0%, var(--primary) 100%);
    transition: width 0.3s ease;
    border-radius: 10px;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 6px 15px rgba(110, 68, 255, 0.3);
}

.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: all 0.6s;
    z-index: -1;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow);
}

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

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: none;
}

.btn-secondary:hover {
    background: rgba(110, 68, 255, 0.1);
    box-shadow: 0 0 15px rgba(110, 68, 255, 0.3);
}

.hero {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 70px;
}

.hero::before {
    display: none;
}

.hero-image::before,
.hero-image::after {
    display: none;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.hero-text {
    width: 50%;
    position: relative;
    z-index: 2;
}

.hero-image {
    width: 45%;
    position: relative;
    z-index: 1;
}

.hero-image img {
    transform: scale(2.2);
    transform-origin: left top;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
    filter: contrast(110%) brightness(105%);
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.1;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 60%, var(--tertiary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    font-weight: 700;
}

.hero-text h1::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 8px;
    bottom: -10px;
    left: 0;
    background: linear-gradient(90deg, var(--tertiary), transparent);
    border-radius: 4px;
}

.hero-text p {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-badges {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.hero-badges img {
    transform: scale(1.2);
    transition: all 0.3s ease;
}

.hero-badges img:hover {
    transform: scale(1.3);
}

section {
    padding: 80px 0;
    position: relative;
    overflow: visible;
}

section::before,
section::after {
    content: none !important;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-title .tag {
    margin-bottom: 20px;
    padding: 6px 16px 6px 24px;
}

.section-title h2 {
    font-size: 3.2rem;
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.2rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--card-shadow);
    transition: all 0.1s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.feature-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(110, 68, 255, 0.05) 0%, rgba(0, 245, 212, 0.05) 100%);
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.5s ease;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 40px rgba(110, 68, 255, 0.2);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--tertiary) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transform: rotate(-5deg);
    box-shadow: 0 10px 20px rgba(110, 68, 255, 0.2);
    position: relative;
    overflow: hidden;
}


.feature-icon i {
    color: white;
    font-size: 30px;
    position: relative;
    z-index: 2;
}

.feature-card h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 15px;
}

.feature-card h3::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), transparent);
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.feature-card p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.7;
}

.installation {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 50px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.installation::before,
.installation::after,
.usage-section::before,
.usage-section::after,
.hero::before,
.hero::after {
    display: none;
}

#installation {
    position: relative;
}

#installation::before {
    content: none; 
}

.installation::before {
    display: none;
}

.installation h3 {
    margin-bottom: 25px;
    font-size: 2.2rem;
    background: linear-gradient(90deg, var(--dark) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.code-block {
    background: var(--dark);
    color: white;
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    overflow-x: auto;
    font-family: 'JetBrains Mono', monospace;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(110, 68, 255, 0.2);
}

.code-block::before {
    content: ">";
    position: absolute;
    left: 10px;
    color: var(--tertiary);
    opacity: 0.5;
}

.steps {
    margin-top: 40px;
}

.step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 25px;
    box-shadow: 0 5px 15px rgba(110, 68, 255, 0.3);
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
}

.step:not(:last-child)::after {
    content: "";
    position: absolute;
    width: 3px;
    height: calc(100% + 20px);
    background: linear-gradient(to bottom, var(--primary) 0%, rgba(110, 68, 255, 0.2) 100%);
    left: 24px;
    top: 50px;
    z-index: 0;
}

.step-content h4 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: var(--dark);
}

.step-content p, .step-content ul {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.step-content a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
}

.step-content a::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.step-content a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.usage-section {
    background: linear-gradient(135deg, rgba(0, 245, 212, 0.1) 0%, rgba(110, 68, 255, 0.1) 100%);
    border-radius: var(--border-radius);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.usage-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.usage-content {
    width: 50%;
    position: relative;
    z-index: 2;
}

.usage-code {
    background: var(--dark);
    color: var(--tertiary);
    padding: 18px;
    border-radius: var(--border-radius);
    margin: 20px 0;
    font-family: 'JetBrains Mono', monospace;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary);
}

.toc {
    position: sticky;
    top: 100px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.toc h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.toc h3::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    bottom: 0;
    left: 0;
}

.toc ul {
    list-style: none;
}

.toc li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.toc li::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    left: 0;
    top: 8px;
}

.toc a {
    text-decoration: none;
    color: var(--gray);
    transition: all 0.3s;
    font-weight: 500;
}

.toc a:hover {
    color: var(--primary);
    transform: translateX(5px);
    display: inline-block;
}

.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 100px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.cta h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.cta h2::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

.cta p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.cta .btn {
    background-color: white;
    color: var(--primary);
    font-weight: 600;
    margin: 0 10px;
    transform: translateY(0);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta .btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary);
    opacity: 0.05;
    filter: blur(100px);
    border-radius: 50%;
    top: -150px;
    right: -150px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.footer-logo .logo-icon {
    width: 36px;
    height: 36px;
}

.footer-logo .logo-icon i {
    font-size: 1.3rem;
}

.footer-about p {
    color: var(--gray);
    max-width: 300px;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.footer-links h4 {
    margin-bottom: 25px;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 15px;
    color: white;
}

.footer-links h4::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--primary);
    bottom: 0;
    left: 0;
}

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

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    text-decoration: none;
    color: var(--gray);
    transition: all 0.3s;
    position: relative;
    padding-left: 15px;
    display: inline-block;
}

.footer-links a::before {
    content: "→";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--tertiary);
    opacity: 0;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: white;
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--gray);
}

.footer-bottom a {
    color: var(--tertiary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.footer-bottom a:hover {
    color: white;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes morphing {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

@keyframes pulse {
    0% {
        transform: translate(-15px, -5px) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translate(-15px, -5px) scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: translate(-15px, -5px) scale(1);
        opacity: 0.2;
    }
}

@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 3.5rem;
    }
    
    .features {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 70px 0;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text, .hero-image {
        width: 100%;
    }
    
    .hero-text {
        margin-bottom: 60px;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .usage-container {
        flex-direction: column;
    }
    
    .usage-content, .usage-image {
        width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        width: 100%;
    }
    
    .feature-card {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-card h3 {
        font-size: 1.5rem;
    }
    
    .installation {
        padding: 30px;
    }
    
    .installation h3 {
        font-size: 1.8rem;
    }
    
    .code-block {
        padding: 15px;
        font-size: 0.9rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
    }
    
    .step-content h4 {
        font-size: 1.3rem;
    }
    
    .cta h2 {
        font-size: 2.2rem;
    }
    
    .cta p {
        font-size: 1.1rem;
    }
}

.cursor-glow {
    position: fixed;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(110, 68, 255, 0.15);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s, width 0.3s, height 0.3s;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 61, 113, 0.1);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.badge span {
    color: var(--primary);
    font-weight: 700;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.hero-shape-divider .shape-fill {
    fill: #FFFFFF;
}

.section-shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.section-shape-divider svg {
    position: relative;
    display: block;
    width: calc(185% + 1.3px);
    height: 80px;
    transform: rotateY(180deg);
}

.section-shape-divider .shape-fill {
    fill: rgba(110, 68, 255, 0.05);
}

.section-shape-divider.bottom {
    bottom: 0;
    left: 0;
    transform: rotate(0deg);
}

.section-shape-divider.bottom svg {
    transform: rotateY(0deg);
}

.section-shape-divider.bottom .shape-fill {
    fill: rgba(255, 255, 255, 0.9);
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.image-wrapper img {
    display: block;
    width: 100%;
    transform: scale(2.2);
    transform-origin: left top;
    filter: contrast(110%) brightness(105%);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.float-element {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.float-element:nth-child(1) {
    top: 20%;
    right: -25px;
}

.float-element:nth-child(2) {
    bottom: 30%;
    right: 10%;
}

.float-element:nth-child(3) {
    top: 50%;
    left: -25px;
}

.float-element i {
    color: var(--primary);
    font-size: 20px;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px 6px 20px;
    background: linear-gradient(135deg, rgba(110, 68, 255, 0.1) 0%, rgba(0, 245, 212, 0.1) 100%);
    border-radius: 20px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    position: relative;
    border: 1px solid rgba(110, 68, 255, 0.2);
    box-shadow: 0 2px 8px rgba(110, 68, 255, 0.1);
}

.tag::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.feature-btn {
    margin-top: 20px;
}

.feature-btn a {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.feature-btn a i {
    font-size: 0.8rem;
    margin-left: 5px;
    transition: transform 0.3s;
}

.feature-btn a:hover {
    color: var(--secondary);
}

.feature-btn a:hover i {
    transform: translateX(5px);
}

.terminal-header {
    display: flex;
    align-items: center;
    background: var(--dark);
    padding: 10px 15px;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terminal-buttons {
    display: flex;
    gap: 8px;
    margin-right: 15px;
}

.terminal-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-buttons span:nth-child(1) {
    background: #ff5f56;
}

.terminal-buttons span:nth-child(2) {
    background: #ffbd2e;
}

.terminal-buttons span:nth-child(3) {
    background: #27c93f;
}

.terminal-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    flex-grow: 1;
    text-align: center;
}

.code-block {
    background: var(--dark);
    color: #f8f8f2;
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    overflow-x: auto;
    font-family: 'JetBrains Mono', monospace;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.code-block .prompt {
    color: var(--tertiary);
    margin-right: 10px;
}

.code-block .comment {
    color: #6272a4;
    margin-left: 10px;
}

.installation-note {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    background: rgba(0, 245, 212, 0.05);
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    border-left: 4px solid var(--tertiary);
}

.installation-note i {
    color: var(--tertiary);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 3px;
}

.important-note {
    background: rgba(255, 61, 113, 0.05);
    border-radius: var(--border-radius);
    padding: 15px;
    margin-top: 15px;
    border-left: 4px solid var(--secondary);
}

.cli-result {
    background: var(--dark);
    color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    margin: 20px 0;
    font-family: 'JetBrains Mono', monospace;
    position: relative;
    line-height: 1.6;
}

.cli-output {
    color: #f8f8f2;
    margin-bottom: 10px;
}

.cli-message {
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    color: #50fa7b;
    margin-bottom: 15px;
    word-wrap: break-word;
}

.cli-prompt {
    color: #f8f8f2;
    position: relative;
    padding-left: 2px;
}

.cli-prompt::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 5px;
}

.cli-prompt.blink::after {
    content: '|';
    animation: blink 1s step-start infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

.action-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.action-option {
    display: flex;
    align-items: center;
    gap: 10px;
}

.key {
    display: inline-block;
    padding: 3px 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--primary);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    border: 1px solid rgba(110, 68, 255, 0.3);
}

.description {
    color: var(--gray);
}

.config-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
}

.config-description {
    flex: 1;
    min-width: 300px;
}

.config-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.config-image img {
    width: 100%;
    display: block;
    transform: scale(2.5);
    transform-origin: left top;
}

.image-shine {
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -150%; }
    100% { left: 150%; }
}

.config-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.config-option {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius);
    transition: all 0.3s;
    border: 1px solid rgba(110, 68, 255, 0.1);
}

.config-option:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
}

.config-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--tertiary) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.config-icon i {
    color: white;
    font-size: 1.5rem;
}

.config-content h4 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.troubleshooting-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.troubleshooting-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    border: 1px solid rgba(110, 68, 255, 0.1);
}

.troubleshooting-item:hover {
    background: white;
    box-shadow: var(--card-shadow);
    transform: translateY(-3px);
}

.trouble-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.trouble-icon i {
    color: white;
    font-size: 1.5rem;
}

.trouble-content {
    flex: 1;
}

.trouble-content h4 {
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.trouble-content p, .trouble-content ul {
    color: var(--gray);
}

.trouble-content ul {
    padding-left: 20px;
    margin-top: 10px;
}

.trouble-content li {
    margin-bottom: 8px;
}

.installation-command {
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    background-color: #1a1a1a;
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:first-child {
    background: var(--primary);
    color: white;
}

.social-links a:hover {
    transform: translateY(-5px);
}

.social-links a:first-child:hover {
    background: var(--primary-dark);
    color: white;
}

.heart {
    color: var(--secondary);
    display: inline-block;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary) 0%, var(--tertiary) 100%);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--tertiary) 100%);
}

.cta-github-btn {
    background-color: var(--primary) !important;
    color: white !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    border: 3px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3) !important;
    padding: 12px 25px !important;
    text-shadow: none !important;
}

.cta-github-btn:hover {
    background-color: var(--primary-dark) !important;
    color: white !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4) !important;
    border: 3px solid rgba(255, 255, 255, 0.5) !important;
}

.cta-github-btn i {
    margin-right: 8px !important;
}

.cta {
    position: relative;
    z-index: 1;
}