/* Homepage Animation Styles - Vume AI to CMS Flow */

.animation-container {
    background: linear-gradient(135deg, #667DE9 0%, #7354AF 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vume-flow-animation {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 25px 15px;
}

/* Vume AI Node - Text only styling like header logo */
.vume-ai-node {
    position: relative;
    background: linear-gradient(to right, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.025em;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    animation: pulse-ai 2s ease-in-out infinite;
    z-index: 10;
    padding: 12px 0;
    display: flex;
    align-items: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.vume-icon {
    display: none; /* Hide the icon since we're using text-only styling */
}

/* CMS Platforms */
.cms-platforms {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.tool-card {
    background: rgba(103, 125, 233, 0.9);
    border-radius: 12px;
    padding: 8px 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: white;
    font-size: 11px;
    transition: all 0.3s ease;
    min-width: 70px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.tool-card:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(103, 125, 233, 0.4);
    background: rgba(103, 125, 233, 1);
    border-color: rgba(255, 255, 255, 0.5);
}

.tool-icon {
    position: relative;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 8px;
    flex-shrink: 0;
    overflow: hidden;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.tool-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Hide text icons since we'll use images */
.wordpress .tool-icon,
.shopify .tool-icon,
.wix .tool-icon,
.webflow .tool-icon,
.blogger .tool-icon {
    color: transparent;
}

/* Flowing particles with CSS Motion Path */
.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
}

/* Motion paths for each CMS platform */
.particle-wp {
    offset-path: path("M0,0 Q-40,30 -80,60 Q-90,70 -100,80");
    animation: flowMotion 2.5s ease-in-out infinite;
}

.particle-shopify {
    offset-path: path("M0,0 Q-20,25 -40,50 Q-45,60 -50,70");
    animation: flowMotion 2.5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.particle-wix {
    offset-path: path("M0,0 Q0,30 0,60 Q0,70 0,80");
    animation: flowMotion 2.5s ease-in-out infinite;
    animation-delay: 1s;
}

.particle-webflow {
    offset-path: path("M0,0 Q20,25 40,50 Q45,60 50,70");
    animation: flowMotion 2.5s ease-in-out infinite;
    animation-delay: 1.5s;
}

.particle-blogger {
    offset-path: path("M0,0 Q40,30 80,60 Q90,70 100,80");
    animation: flowMotion 2.5s ease-in-out infinite;
    animation-delay: 2s;
}

/* Motion path animation */
@keyframes flowMotion {
    0% {
        opacity: 0;
        offset-distance: 0%;
        transform: scale(0.3);
    }
    20% {
        opacity: 1;
        transform: scale(0.8);
    }
    80% {
        opacity: 0.8;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        offset-distance: 100%;
        transform: scale(0.2);
    }
}



/* Pulsing animation for Vume AI */
@keyframes pulse-ai {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* CMS Box Publishing Animation - Instant Transition with Longer Green State */
@keyframes publishAnimation {
    0%, 69.9%, 85.1%, 100% {
        background: rgba(103, 125, 233, 0.9);
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        border-color: rgba(255, 255, 255, 0.3);
    }
    70%, 85% {
        background: linear-gradient(135deg, #10b981, #059669);
        transform: scale(1.08);
        box-shadow: 0 6px 25px rgba(16, 185, 129, 0.3);
        color: white;
        border-color: rgba(255, 255, 255, 0.5);
    }
}

/* Logo to Checkmark Animation */
@keyframes hideIcon {
    0%, 69.9%, 85.1%, 100% {
        opacity: 1;
    }
    70%, 85% {
        opacity: 0;
    }
}

@keyframes showCheckmark {
    0%, 69.9%, 85.1%, 100% {
        opacity: 0;
    }
    70%, 85% {
        opacity: 1;
    }
}

/* Individual CMS box animations with reduced delays */
.wordpress {
    animation: publishAnimation 6s ease-in-out infinite;
}

.shopify {
    animation: publishAnimation 6s ease-in-out infinite;
    animation-delay: 1s;
}

.wix {
    animation: publishAnimation 6s ease-in-out infinite;
    animation-delay: 2s;
}

.webflow {
    animation: publishAnimation 6s ease-in-out infinite;
    animation-delay: 3s;
}

.blogger {
    animation: publishAnimation 6s ease-in-out infinite;
    animation-delay: 4s;
}

/* Icon animations for each CMS */
.wordpress .tool-icon img {
    animation: hideIcon 6s ease-in-out infinite;
}

.shopify .tool-icon img {
    animation: hideIcon 6s ease-in-out infinite;
    animation-delay: 1s;
}

.wix .tool-icon img {
    animation: hideIcon 6s ease-in-out infinite;
    animation-delay: 2s;
}

.webflow .tool-icon img {
    animation: hideIcon 6s ease-in-out infinite;
    animation-delay: 3s;
}

.blogger .tool-icon img {
    animation: hideIcon 6s ease-in-out infinite;
    animation-delay: 4s;
}

/* Checkmark icons */
.tool-icon::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
    opacity: 0;
}

.wordpress .tool-icon::after {
    animation: showCheckmark 6s ease-in-out infinite;
}

.shopify .tool-icon::after {
    animation: showCheckmark 6s ease-in-out infinite;
    animation-delay: 1s;
}

.wix .tool-icon::after {
    animation: showCheckmark 6s ease-in-out infinite;
    animation-delay: 2s;
}

.webflow .tool-icon::after {
    animation: showCheckmark 6s ease-in-out infinite;
    animation-delay: 3s;
}

.blogger .tool-icon::after {
    animation: showCheckmark 6s ease-in-out infinite;
    animation-delay: 4s;
}

/* AI Writer Animation Styles */
.ai-writer-animation {
    background: linear-gradient(135deg, #667DE9 0%, #7354AF 100%) !important;
    overflow: visible !important;
}

.ai-writer-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    padding: 40px;
}

.central-square {
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: none;
    padding: 20px 0;
}

.center-text {
    text-align: center;
    background: linear-gradient(to right, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ai-powered {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 0.3rem;
    line-height: 1;
    letter-spacing: -0.025em;
}

.article-writer {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    opacity: 1;
    letter-spacing: -0.025em;
    background: linear-gradient(to right, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.glow-dot {
    display: none;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

@keyframes float-feature {
    0%, 100% { transform: translateY(0px) rotate(var(--rotation)); }
    50% { transform: translateY(-6px) rotate(var(--rotation)); }
}

.feature {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 12px 16px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
    animation: float-feature 3s ease-in-out infinite;
    font-size: 0.8rem;
    min-width: 140px;
}

.feature:hover {
    transform: translateY(-8px) scale(1.05) rotate(var(--rotation));
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 18px;
    height: 18px;
    position: relative;
    flex-shrink: 0;
}

.feature-text {
    font-size: 0.8rem;
    white-space: nowrap;
    font-weight: 600;
}

/* Chart Icon */
.chart-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 3px;
    position: relative;
}

.chart-icon::before {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 3px;
    width: 2px;
    height: 6px;
    background: white;
    border-radius: 1px;
}

.chart-icon::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 6px;
    width: 2px;
    height: 8px;
    background: white;
    border-radius: 1px;
    box-shadow: 3px 0 0 white, 3px -2px 0 white;
}

/* Globe Icon */
.globe-icon {
    border: 1.5px solid #667eea;
    border-radius: 50%;
    position: relative;
}

.globe-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border: 1.5px solid #667eea;
    border-radius: 50%;
    border-left-color: transparent;
    border-right-color: transparent;
}

.globe-icon::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 1.5px;
    background: #667eea;
    border-radius: 1px;
    box-shadow: 0 5px 0 #667eea, 0 10px 0 #667eea;
}

/* Check Icon */
.check-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    position: relative;
}

.check-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 3px;
    height: 7px;
    border: 1.5px solid white;
    border-left: none;
    border-top: none;
}

/* Search Icon */
.search-icon {
    position: relative;
}

.search-icon::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 8px;
    height: 8px;
    border: 1.5px solid #667eea;
    border-radius: 50%;
}

.search-icon::after {
    content: '';
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 5px;
    height: 2px;
    background: #667eea;
    border-radius: 1px;
    transform: rotate(45deg);
}

/* Corner positioning */
.competitor-analysis {
    top: 15px;
    left: 15px;
    --rotation: -2deg;
    animation-delay: 0s;
}

.real-time-data {
    top: 15px;
    right: 15px;
    --rotation: 1.5deg;
    animation-delay: 0.5s;
}

.fact-checking {
    bottom: 15px;
    left: 15px;
    --rotation: 1deg;
    animation-delay: 1s;
}

.web-research {
    bottom: 15px;
    right: 15px;
    --rotation: -1.5deg;
    animation-delay: 1.5s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .vume-flow-animation {
        min-height: 200px;
        padding: 15px 5px;
    }
    
    .vume-ai-node {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .vume-icon {
        width: 16px;
        height: 16px;
        font-size: 8px;
    }
    
    .tool-card {
        padding: 4px 8px;
        font-size: 9px;
        min-width: 50px;
    }
    
    .tool-icon {
        width: 14px;
        height: 14px;
        font-size: 7px;
    }
    
    .cms-platforms {
        gap: 6px;
    }
    
    /* AI Writer Animation Mobile */
    .ai-writer-container {
        padding: 25px;
    }
    
    .central-square {
        width: 80px;
        height: 55px;
        border-radius: 10px;
    }
    
    .ai-powered {
        font-size: 1.2rem;
    }
    
    .article-writer {
        font-size: 0.9rem;
    }
    
    .glow-dot {
        width: 10px;
        height: 10px;
        top: -5px;
        right: -5px;
    }
    
    .feature {
        padding: 8px 12px;
        gap: 6px;
        border-radius: 12px;
        min-width: 90px;
    }
    
    .feature-text {
        font-size: 0.65rem;
    }
    
    .feature-icon {
        width: 14px;
        height: 14px;
    }
    
    .competitor-analysis {
        top: 10px;
        left: 10px;
    }
    
    .real-time-data {
        top: 10px;
        right: 10px;
    }
    
    .fact-checking {
        bottom: 10px;
        left: 10px;
    }
    
    .web-research {
        bottom: 10px;
        right: 10px;
    }
}

/* 3D Flag Animation Styles */
.flag-animation-container {
    background: linear-gradient(135deg, #667DE9 0%, #7354AF 100%) !important;
    overflow: hidden !important;
    perspective: 1200px;
}

.flag-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 250px;
    transform-style: preserve-3d;
    animation: flagRotate 25s infinite linear;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flag-block {
    position: absolute;
    width: 60px;
    height: 40px;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
    cursor: pointer;
}



.flag-face {
    position: absolute;
    width: 60px;
    height: 40px;
    backface-visibility: hidden;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.1);
}

.flag-front { 
    transform: translateZ(0px); 
    box-shadow: 
        0 0 0 1px rgba(0,0,0,0.1),
        -8px 8px 0 -1px rgba(0,0,0,0.2),
        -16px 16px 0 -2px rgba(0,0,0,0.15),
        0 4px 15px rgba(0,0,0,0.3);
}
.flag-back { 
    transform: translateZ(0px) rotateY(180deg); 
    box-shadow: 
        0 0 0 1px rgba(0,0,0,0.1),
        8px 8px 0 -1px rgba(0,0,0,0.2),
        16px 16px 0 -2px rgba(0,0,0,0.15),
        0 4px 15px rgba(0,0,0,0.3);
}
.flag-top { display: none; }
.flag-bottom { display: none; }
.flag-left { display: none; }
.flag-right { display: none; }

/* USA Flag */
.usa {
    background: linear-gradient(to bottom, 
        #B22234 0%, #B22234 7.7%, 
        white 7.7%, white 15.4%, 
        #B22234 15.4%, #B22234 23.1%, 
        white 23.1%, white 30.8%, 
        #B22234 30.8%, #B22234 38.5%, 
        white 38.5%, white 46.2%, 
        #B22234 46.2%, #B22234 53.9%, 
        white 53.9%, white 61.6%, 
        #B22234 61.6%, #B22234 69.3%, 
        white 69.3%, white 77%, 
        #B22234 77%, #B22234 84.7%, 
        white 84.7%, white 92.4%, 
        #B22234 92.4%);
}
.usa::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 53.8%;
    background: #3C3B6E;
}

/* Canada Flag */
.canada {
    background: linear-gradient(to right, #FF0000 0%, #FF0000 25%, white 25%, white 75%, #FF0000 75%);
}
.canada::after {
    content: '🍁';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    color: #FF0000;
}

/* Brazil Flag */
.brazil {
    background: #009739;
}
.brazil::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 25px;
    background: #FEDD00;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.brazil::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    background: #012169;
    border-radius: 50%;
}

/* UK Flag */
.uk {
    background: #012169;
    position: relative;
}
.uk::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 40%, white 40%, white 60%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, white 40%, white 60%, transparent 60%),
        linear-gradient(0deg, transparent 45%, white 45%, white 55%, transparent 55%),
        linear-gradient(90deg, transparent 45%, white 45%, white 55%, transparent 55%);
}
.uk::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 45%, #C8102E 45%, #C8102E 55%, transparent 55%),
        linear-gradient(-45deg, transparent 45%, #C8102E 45%, #C8102E 55%, transparent 55%),
        linear-gradient(0deg, transparent 47%, #C8102E 47%, #C8102E 53%, transparent 53%),
        linear-gradient(90deg, transparent 47%, #C8102E 47%, #C8102E 53%, transparent 53%);
}

/* Germany Flag */
.germany {
    background: linear-gradient(to bottom, #000000 33%, #DD0000 33%, #DD0000 66%, #FFCE00 66%);
}

/* France Flag */
.france {
    background: linear-gradient(to right, #0055A4 33%, white 33%, white 66%, #EF4135 66%);
}

/* Japan Flag */
.japan {
    background: white;
}
.japan::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    background: #BC002D;
    border-radius: 50%;
}

/* China Flag */
.china {
    background: #DE2910;
}
.china::after {
    content: '⭐';
    position: absolute;
    top: 20%;
    left: 20%;
    font-size: 8px;
    color: #FFDE00;
}

/* Italy Flag */
.italy {
    background: linear-gradient(to right, #009246 33%, white 33%, white 66%, #CE2B37 66%);
}

/* Spain Flag */
.spain {
    background: linear-gradient(to bottom, #AA151B 25%, #F1BF00 25%, #F1BF00 75%, #AA151B 75%);
}

/* Australia Flag */
.australia {
    background: #012169;
}
.australia::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 15px;
    background: 
        linear-gradient(45deg, transparent 40%, white 40%, white 60%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, white 40%, white 60%, transparent 60%),
        linear-gradient(0deg, transparent 45%, white 45%, white 55%, transparent 55%),
        linear-gradient(90deg, transparent 45%, white 45%, white 55%, transparent 55%);
}
.australia::after {
    content: '✦';
    position: absolute;
    bottom: 20%;
    right: 30%;
    font-size: 6px;
    color: white;
}

/* India Flag */
.india {
    background: linear-gradient(to bottom, #FF9933 33%, white 33%, white 66%, #138808 66%);
}
.india::after {
    content: '☸';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 7px;
    color: #000080;
}

/* Position flags in 3D space - adjusted for smaller container */
.flag-1 { transform: translate3d(-80px, -60px, 40px) rotateY(45deg) rotateX(15deg); }
.flag-2 { transform: translate3d(20px, -50px, -20px) rotateY(-30deg) rotateX(-10deg); }
.flag-3 { transform: translate3d(80px, -30px, 60px) rotateY(60deg) rotateX(20deg); }
.flag-4 { transform: translate3d(-60px, 10px, -40px) rotateY(-45deg) rotateX(25deg); }
.flag-5 { transform: translate3d(40px, 20px, 80px) rotateY(30deg) rotateX(-15deg); }
.flag-6 { transform: translate3d(-20px, 50px, -60px) rotateY(-60deg) rotateX(10deg); }
.flag-7 { transform: translate3d(100px, 30px, -30px) rotateY(75deg) rotateX(-20deg); }
.flag-8 { transform: translate3d(-100px, 60px, 50px) rotateY(-75deg) rotateX(30deg); }
.flag-9 { transform: translate3d(0px, -80px, 100px) rotateY(0deg) rotateX(45deg); }
.flag-10 { transform: translate3d(70px, 70px, 30px) rotateY(90deg) rotateX(-25deg); }
.flag-11 { transform: translate3d(-70px, -20px, 120px) rotateY(-90deg) rotateX(35deg); }
.flag-12 { transform: translate3d(110px, -10px, -80px) rotateY(120deg) rotateX(-30deg); }

@keyframes flagRotate {
    0% { transform: rotateY(0deg) rotateX(0deg); }
    25% { transform: rotateY(90deg) rotateX(5deg); }
    50% { transform: rotateY(180deg) rotateX(0deg); }
    75% { transform: rotateY(270deg) rotateX(-5deg); }
    100% { transform: rotateY(360deg) rotateX(0deg); }
}

.flag-container:hover {
    animation-play-state: paused;
}

/* Mobile adjustments for flags */
@media (max-width: 768px) {
    .flag-container {
        min-height: 200px;
    }
    
    .flag-block {
        width: 45px;
        height: 30px;
    }
    
    .flag-face {
        width: 45px;
        height: 30px;
    }
    
    .flag-front { 
        box-shadow: 
            0 0 0 1px rgba(0,0,0,0.1),
            -6px 6px 0 -1px rgba(0,0,0,0.2),
            -12px 12px 0 -2px rgba(0,0,0,0.15),
            0 3px 10px rgba(0,0,0,0.3);
    }
    .flag-back { 
        box-shadow: 
            0 0 0 1px rgba(0,0,0,0.1),
            6px 6px 0 -1px rgba(0,0,0,0.2),
            12px 12px 0 -2px rgba(0,0,0,0.15),
            0 3px 10px rgba(0,0,0,0.3);
    }
    
    .flag-1 { transform: translate3d(-60px, -45px, 30px) rotateY(45deg) rotateX(15deg); }
    .flag-2 { transform: translate3d(15px, -35px, -15px) rotateY(-30deg) rotateX(-10deg); }
    .flag-3 { transform: translate3d(60px, -20px, 45px) rotateY(60deg) rotateX(20deg); }
    .flag-4 { transform: translate3d(-45px, 8px, -30px) rotateY(-45deg) rotateX(25deg); }
    .flag-5 { transform: translate3d(30px, 15px, 60px) rotateY(30deg) rotateX(-15deg); }
    .flag-6 { transform: translate3d(-15px, 35px, -45px) rotateY(-60deg) rotateX(10deg); }
    .flag-7 { transform: translate3d(75px, 20px, -20px) rotateY(75deg) rotateX(-20deg); }
    .flag-8 { transform: translate3d(-75px, 45px, 35px) rotateY(-75deg) rotateX(30deg); }
    .flag-9 { transform: translate3d(0px, -60px, 75px) rotateY(0deg) rotateX(45deg); }
    .flag-10 { transform: translate3d(50px, 50px, 20px) rotateY(90deg) rotateX(-25deg); }
    .flag-11 { transform: translate3d(-50px, -15px, 90px) rotateY(-90deg) rotateX(35deg); }
    .flag-12 { transform: translate3d(80px, -8px, -60px) rotateY(120deg) rotateX(-30deg); }
} 