/* ============================================
   Main Styles for Index Page
   ============================================ */

/* GLOBAL STYLES */
body {
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
    background: linear-gradient(180deg, #0a1551, #4b7bff);
    color: white;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(75, 123, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(29, 29, 252, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background: 
            radial-gradient(circle at 20% 50%, rgba(75, 123, 255, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(29, 29, 252, 0.1) 0%, transparent 50%);
    }
    50% {
        background: 
            radial-gradient(circle at 80% 50%, rgba(75, 123, 255, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 20% 80%, rgba(29, 29, 252, 0.15) 0%, transparent 50%);
    }
}

#bg-lines {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

/* HERO SECTION */
.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px;
    position: relative;
    z-index: 2;
    min-height: 100vh;
}

.left {
    max-width: 50%;
    opacity: 0;
    animation: fadeInLeft 1s ease-out forwards;
}

.left h1,
.left h3,
.left p,
.left .btn {
    opacity: 1;
    animation: none;
}

h1 {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #ffffff 0%, #4b7bff 50%, #1d1dfc 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 4s ease infinite, fadeInLeft 1s ease-out forwards, textPulse 2s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(75, 123, 255, 0.5);
}

p {
    font-size: 22px;
    margin-top: 20px;
}

.buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.btn {
    padding: 18px 45px;
    font-size: 18px;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn::before,
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn::before {
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1), transparent 70%);
}

.btn-start {
    background: linear-gradient(135deg, #1d1dfc 0%, #4b7bff 50%, #7bb8ff 100%);
    color: white;
    box-shadow: 0 0 20px rgba(75, 123, 255, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
    border: 2px solid rgba(75, 123, 255, 0.5);
}

.btn-start:hover {
    transform: scale(1.12) translateY(-5px);
    box-shadow: 0 0 40px rgba(75, 123, 255, 0.8), 
                0 15px 40px rgba(75, 123, 255, 0.4),
                inset 0 1px 0 rgba(255,255,255,0.3);
    border-color: rgba(75, 123, 255, 0.8);
}

.btn-start:hover::before {
    opacity: 1;
}

.btn-info {
    background: rgba(255, 255, 255, 0.95);
    color: #1d1dfc;
    box-shadow: 0 0 20px rgba(255,255,255,0.3), inset 0 1px 0 rgba(255,255,255,0.5);
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-info:hover {
    background: #ffffff;
    color: #4b7bff;
    transform: scale(1.12) translateY(-5px);
    box-shadow: 0 0 40px rgba(255,255,255,0.6), 
                0 15px 40px rgba(255,255,255,0.3),
                inset 0 1px 0 rgba(255,255,255,0.8);
    border-color: rgba(255,255,255,0.8);
}

.btn-info:hover::before {
    opacity: 1;
}

.video-container {
    width: 340px;
    height: 570px;
    border-radius: 40px;
    overflow: hidden;
    z-index: 2;
    opacity: 0;
    animation: fadeInRight 1s ease-out forwards, float 4s ease-in-out infinite;
    position: relative;
    background: #000;
    border: 8px solid #1a1a1a;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 0 0 0 rgba(75, 123, 255, 0.4),
        0 0 40px rgba(75, 123, 255, 0.3),
        0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 28px;
    background: #000;
    border-radius: 0 0 25px 25px;
    z-index: 10;
}

.video-container::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 340px;
    height: 40px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6), transparent);
    border-radius: 50%;
    z-index: -1;
}

.video-container:hover {
    transform: scale(1.08) translateY(-15px);
    box-shadow: 
        0 0 30px rgba(75, 123, 255, 0.8),
        0 0 60px rgba(75, 123, 255, 0.6),
        0 30px 80px rgba(0, 0, 0, 0.6);
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* TOOLS SECTION */
.section-tools {
    background: #ffffff;
    color: #000;
    text-align: center;
    padding: 180px 40px;
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}



@keyframes dotShift {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.section-tools h2 {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, #1d1dfc 0%, #4b7bff 50%, #0a1551 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease-out forwards;
    position: relative;
    z-index: 2;
}

.section-tools h3 {
    font-size: 28px;
    font-weight: 500;
    margin-top: 15px;
    color: #666;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
    letter-spacing: 0.5px;
}

.tools-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 80px;
    align-items: stretch;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* FLIP CARD */
.flip-card {
    width: 280px;
    height: 300px;
    perspective: 1200px;
    cursor: pointer;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    transform-origin: center;
}

.flip-card:hover {
    transform: scale(1.15);
}

.flip-card.visible {
    animation: slideInUp 0.8s ease-out forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px) rotateX(20deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card.is-flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 25px;
    padding: 30px 25px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
}

.flip-card:hover .flip-card-front,
.flip-card:hover .flip-card-back {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}


.flip-card-front {
    transform: rotateY(0deg);
    z-index: 2;
}

.flip-card-front img,
.flip-card-back img {
    width: 100px;
    height: auto;
    display: block;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15)) brightness(1.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.flip-card:hover .flip-card-front img {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.25)) brightness(1.2);
}


.flip-card-back {
    transform: rotateY(180deg);
    z-index: 1;
}

.flip-card-front h3,
.flip-card-back p {
    margin: 8px 0;
    font-weight: 600;
}

.flip-card-back p {
    font-size: 13px;
    line-height: 1.5;
}

/* Card Colors - Enhanced Designs */
.card-green-front {
    background: linear-gradient(135deg, #d4f5dc 0%, #88e896 50%, #4dd96e 100%);
    color: #0a2e0d;
    border: 2px solid rgba(46, 204, 113, 0.5);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(46, 204, 113, 0.35),
        0 0 40px rgba(46, 204, 113, 0.2),
        inset -2px -2px 10px rgba(255,255,255,0.6),
        inset 2px 2px 10px rgba(0,0,0,0.1);
}

.card-green-front::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.15) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: movePattern 10s linear infinite;
}

.card-green-front::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(46, 204, 113, 0.08) 100%);
    pointer-events: none;
}

@keyframes movePattern {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

.card-green-front h3 {
    color: #0a2e0d;
    font-size: 28px;
    font-weight: 1000;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.card-green-back {
    background: linear-gradient(135deg, #2ecc71 0%, #0d993f 50%, #004d2e 100%);
    color: #ffffff;
    border: 2px solid rgba(46, 204, 113, 0.5);
    box-shadow: 
        0 20px 60px rgba(26, 188, 63, 0.5),
        0 0 40px rgba(46, 204, 113, 0.3),
        inset 0 2px 10px rgba(255,255,255,0.25),
        inset -2px -2px 10px rgba(0,0,0,0.3);
    position: relative;
}

.card-green-back::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    pointer-events: none;
}



.card-orange-front {
    background: linear-gradient(135deg, #ffe8cc 0%, #ffcc80 50%, #ffaa00 100%);
    color: #5a2900;
    border: 2px solid rgba(255, 140, 0, 0.5);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(255, 140, 0, 0.35),
        0 0 40px rgba(255, 140, 0, 0.2),
        inset -2px -2px 10px rgba(255,255,255,0.6),
        inset 2px 2px 10px rgba(0,0,0,0.1);
}

.card-orange-front::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.15) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: movePattern 10s linear infinite;
}

.card-orange-front::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 140, 0, 0.08) 100%);
    pointer-events: none;
}

.card-orange-front h3 {
    color: #5a2900;
    font-size: 28px;
    font-weight: 1000;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.card-orange-back {
    background: linear-gradient(135deg, #ff8c00 0%, #d9480f 50%, #8b2800 100%);
    color: #ffffff;
    border: 2px solid rgba(255, 140, 0, 0.5);
    box-shadow: 
        0 20px 60px rgba(255, 107, 53, 0.5),
        0 0 40px rgba(255, 140, 0, 0.3),
        inset 0 2px 10px rgba(255,255,255,0.25),
        inset -2px -2px 10px rgba(0,0,0,0.3);
    position: relative;
}

.card-orange-back::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    pointer-events: none;
}

.card-blue-front {
    background: linear-gradient(135deg, #cce5ff 0%, #99ccff 50%, #66b3ff 100%);
    color: #001a4d;
    border: 2px solid rgba(29, 29, 252, 0.5);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(29, 29, 252, 0.35),
        0 0 40px rgba(29, 29, 252, 0.2),
        inset -2px -2px 10px rgba(255,255,255,0.6),
        inset 2px 2px 10px rgba(0,0,0,0.1);
}

.card-blue-front::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(29, 29, 252, 0.15) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: movePattern 10s linear infinite;
}

.card-blue-front::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(29, 29, 252, 0.08) 100%);
    pointer-events: none;
}

.card-blue-front h3 {
    color: #001a4d;
    font-size: 28px;
    font-weight: 1000;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.card-blue-back {
    background: linear-gradient(135deg, #1d1dfc 0%, #0033b4 50%, #001a66 100%);
    color: #ffffff;
    border: 2px solid rgba(29, 29, 252, 0.5);
    box-shadow: 
        0 20px 60px rgba(29, 29, 252, 0.5),
        0 0 40px rgba(29, 29, 252, 0.3),
        inset 0 2px 10px rgba(255,255,255,0.25),
        inset -2px -2px 10px rgba(0,0,0,0.3);
    position: relative;
}

.card-blue-back::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    pointer-events: none;
}

/* QUOTE SECTION */
.quote-section {
    position: relative;
    width: 100%;
    padding: 100px 40px;
    background: linear-gradient(180deg, #0a1551 0%, #4b7bff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    min-height: 100vh;
}

.quote-text {
    max-width: 900px;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.4;
    color: #ffffff;
    z-index: 2;
}

.quote-mark {
    position: absolute;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.15);
    font-family: serif;
    z-index: 1;
}

.quote-mark.left {
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
}

.quote-mark.right {
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
}

/* 3D CIRCULAR CAROUSEL */
.carousel-title {
    font-size: 72px;
    font-weight: 900;
    text-align: center;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 10;
    background: linear-gradient(135deg, #1d1dfc 0%, #4b7bff 50%, #0a1551 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    white-space: nowrap;
}


.rank-carousel-3d {
    width: 100%;
    height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    background: transparent;
    position: relative;
    overflow: visible;
}

.rank-carousel-3d-container {
    position: relative;
    width: 900px;
    height: 700px;
    transform-style: preserve-3d;
}

.rank-slide-3d {
    position: absolute;
    width: 260px;
    height: 290px;
    left: 50%;
    top: 50%;
    margin-left: -130px;
    margin-top: -145px;
    text-align: center;
    transition: all 0.1s ease-out;
    transform-style: preserve-3d;
    cursor: pointer;
}

.rank-slide-3d:hover {
    filter: brightness(1.1);
}

.rank-slide-3d img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    display: block;
    margin: 0;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.rank-caption {
    margin: 0;
    padding: 8px 0 0 0;
    font-size: 14px;
    color: #bbb;
    transition: opacity 0.2s linear;
    height: 30px;
    line-height: 1.2;
}
/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes textPulse {
    0%, 100% {
        letter-spacing: -2px;
    }
    50% {
        letter-spacing: 2px;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    50% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes movePattern {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

@keyframes dotShift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes gradientShift {
    0% { background-position: 20% 80%; }
    50% { background-position: 80% 20%; }
    100% { background-position: 20% 80%; }
}

@keyframes rankScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-1 * var(--scroll-distance)));
    }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .container {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .left {
        max-width: 100%;
    }

    .video-container {
        margin-top: 40px;
        width: 260px;
        height: 440px;
    }

    .tools-container {
        flex-direction: column;
        gap: 30px;
        padding: 20px 0;
        align-items: center;
    }

    .flip-card {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .quote-text {
        font-size: 22px;
    }

    .quote-mark {
        font-size: 80px;
    }

    .quote-mark.left {
        left: 20px;
    }

    .quote-mark.right {
        right: 20px;
    }

    h1 {
        font-size: 36px;
    }

    .section-tools h2 {
        font-size: 24px;
    }

    .section-tools h3 {
        font-size: 18px;
    }
}

/* MISC */
.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.fade-in.visible {
    opacity: 1;
}

h2, h3, p, .btn, .flip-card, .rank-slide {
    opacity: 0;
}

h2.visible, h3.visible, p.visible, .btn.visible, .flip-card.visible, .rank-slide.visible {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Simple Cards */
.tools-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    flex-wrap: wrap;
}

.card {
    width: 280px;
    height: 300px;
    border-radius: 25px;
    perspective: 1200px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    transform-origin: center;
}

.card:hover {
    transform: scale(1.08);
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 25px;
    padding: 30px 25px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

.card:hover .card-front,
.card:hover .card-back {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.card-front {
    transform: rotateY(0deg);
    z-index: 2;
}

.card-front img {
    width: 100px;
    height: auto;
    display: block;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15)) brightness(1.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card:hover .card-front img {
    transform: scale(1.15);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.25)) brightness(1.2);
}

.card-front i {
    font-size: 80px;
    margin-bottom: 15px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0.9;
}

.card:hover .card-front i {
    transform: scale(1.15);
    opacity: 1;
}

.card-back {
    transform: rotateY(180deg);
    z-index: 1;
}

.card-front h3 {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin: 8px 0;
    letter-spacing: 1px;
}

.card-back p {
    font-size: 14px;
    line-height: 1.5;
    margin: 8px 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
    justify-content: flex-start;
    width: 100%;
}

.card-back p i {
    font-size: 16px;
    min-width: 20px;
    opacity: 0.9;
}

.card-green {
    background: #4dd96e;
    color: #0a2e0d;
}

.card-blue {
    background: #4b7bff;
    color: #ffffff;
}

.card-gold {
    background: #ffd700;
    color: #5a3a00;
}
