
:root {
    --electric-border-color: #640197;
    --electric-light-color: oklch(from var(--electric-border-color) l c h);
    --gradient-color: oklch( from var(--electric-border-color) 0.3 calc(c / 2) h / 0.4 );
    --color-neutral-900: oklch(0.185 0 0);
}

.section-card-eletric {
    font-family: system-ui, -apple-system, sans-serif;
    background-color: transparent;
    color: oklch(0.985 0 0);
    height: 100vh;
    overflow: hidden;
}

/* Main container */
.main-container-card-eletric {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

/* SVG positioning */
.svg-container-card-eletric {
    position: absolute;
}

/* Card container */
.card-container-card-eletric {
    padding: 2px;
    border-radius: 24px;
    position: relative;
    background: linear-gradient( -30deg, var(--gradient-color), transparent, var(--gradient-color) ), linear-gradient( to bottom, var(--color-neutral-900), var(--color-neutral-900) );
}

/* Inner container */
.inner-container-card-eletric {
    position: relative;
}

/* Border layers */
.border-outer-card-eletric {
    border: 2px solid rgba(221, 132, 72, 0.5);
    border-radius: 24px;
    padding-right: 4px;
    padding-bottom: 4px;
}

.main-card-card-eletric {
    width: 350px;
    height: 500px;
    border-radius: 24px;
    border: 2px solid var(--electric-border-color);
    margin-top: -4px;
    margin-left: -4px;
    filter: url(#turbulent-displace);
}

/* Glow effects */
.glow-layer-1-card-eletric {
    border: 2px solid rgba(221, 132, 72, 0.6);
    border-radius: 24px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    filter: blur(1px);
}

.glow-layer-2-card-eletric {
    border: 2px solid var(--electric-light-color);
    border-radius: 24px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    filter: blur(4px);
}

/* Overlay effects */
.overlay-1-card-eletric {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    opacity: 1;
    mix-blend-mode: overlay;
    transform: scale(1.1);
    filter: blur(16px);
    background: linear-gradient( -30deg, white, transparent 30%, transparent 70%, white );
}

.overlay-2-card-eletric {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    opacity: 0.5;
    mix-blend-mode: overlay;
    transform: scale(1.1);
    filter: blur(16px);
    background: linear-gradient( -30deg, white, transparent 30%, transparent 70%, white );
}

/* Background glow */
.background-glow-card-eletric {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    filter: blur(32px);
    transform: scale(1.1);
    opacity: 0.3;
    z-index: -1;
    background: linear-gradient( -30deg, var(--electric-light-color), transparent, var(--electric-border-color) );
}

/* Content container */
.content-container-card-eletric {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Content sections */
.content-top-card-eletric {
    display: flex;
    flex-direction: column;
    padding: 48px;
    padding-bottom: 16px;
    height: 100%;
}

.content-bottom-card-eletric {
    display: flex;
    flex-direction: column;
    padding: 48px;
    padding-top: 16px;
}

/* Scrollbar glass component */
.scrollbar-glass-card-eletric {
    background: radial-gradient( 47.2% 50% at 50.39% 88.37%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 100% ), rgba(255, 255, 255, 0.04);
    position: relative;
    transition: background 0.3s ease;
    border-radius: 14px;
    width: fit-content;
    height: fit-content;
    padding: 8px 16px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

    .scrollbar-glass-card-eletric:hover {
        background: radial-gradient( 47.2% 50% at 50.39% 88.37%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 100% ), rgba(255, 255, 255, 0.08);
    }

    .scrollbar-glass-card-eletric::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 1px;
        background: linear-gradient( 150deg, rgba(255, 255, 255, 0.48) 16.73%, rgba(255, 255, 255, 0.08) 30.2%, rgba(255, 255, 255, 0.08) 68.2%, rgba(255, 255, 255, 0.6) 81.89% );
        border-radius: inherit;
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask-composite: xor;
        -webkit-mask-composite: xor;
        pointer-events: none;
    }

/* Typography */
.title-card-eletric {
    font-size: 20px;
    font-weight: 500;
    margin-top: auto;
}

.description-card-eletric {
    opacity: 0.5;
}

/* Divider */
.divider-card-eletric {
    margin-top: auto;
    border: none;
    height: 1px;
    background-color: currentColor;
    opacity: 0.1;
    mask-image: linear-gradient(to right, transparent, black, transparent);
    -webkit-mask-image: linear-gradient( to right, transparent, black, transparent );
}