/* Carousel Styles */
.carousel-container {
    margin-bottom: 60px;
}

.carousel-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 255, 136, 0.2);
}

.carousel-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.4));
}

/* Main Screenshots Carousel */
.main-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    height: 500px;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.carousel-slide img:hover {
    opacity: 0.9;
}

.slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 40px 30px 30px;
    color: #ffffff;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.carousel-slide:hover .slide-info {
    transform: translateY(0);
}

.slide-info h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #00ff88;
}

.slide-info p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.5;
}

.zoom-btn {
    display: none;
}

.zoom-btn::before {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid #000000;
    border-radius: 50%;
    position: relative;
}

.zoom-btn::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 2px;
    background: #000000;
    border-radius: 1px;
    transform: rotate(45deg);
    top: 31px;
    right: 19px;
}

.zoom-btn:hover {
    background: #00ff88;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.5);
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.carousel-btn {
    background: rgba(0, 255, 136, 0.8);
    color: #000000;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    pointer-events: all;
    backdrop-filter: blur(10px);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
}

.carousel-btn.prev::before {
    border-left: 8px solid transparent;
    border-right: 12px solid #000000;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    margin-left: -1px;
}

.carousel-btn.next::before {
    border-left: 12px solid #000000;
    border-right: 8px solid transparent;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    margin-right: -1px;
}

.carousel-btn:hover {
    background: #00ff88;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #00ff88;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
    transform: scale(1.2);
}

.dot:hover:not(.active) {
    background: rgba(0, 255, 136, 0.6);
    transform: scale(1.1);
}

/* Video Carousel */
.video-carousel {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.video-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 25px;
}

.video-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.15);
    border-color: rgba(0, 255, 136, 0.3);
}

.video-container {
    position: relative;
    height: 200px;
}

.video-card.featured .video-container {
    height: 300px;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.video-container video:hover {
    opacity: 0.9;
}

.video-info {
    padding: 20px;
    position: relative;
}

.video-info h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.video-info p {
    color: #aaaaaa;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

.video-duration {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 255, 136, 0.9);
    color: #000000;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Technical Details Carousel */
.tech-carousel {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.tech-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.tech-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.15);
    border-color: rgba(0, 255, 136, 0.3);
}

.tech-preview {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.tech-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.2);
    transition: filter 0.3s ease;
}

.tech-card:hover .tech-preview img {
    filter: grayscale(0);
}

.tech-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 255, 136, 0.9);
    color: #000000;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tech-details {
    padding: 20px;
}

.tech-details h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.poly-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.poly-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.poly-stat:last-child {
    border-bottom: none;
}

.poly-label {
    color: #aaaaaa;
    font-size: 0.9rem;
}

.poly-value {
    color: #00ff88;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Transition Section */
.transition-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 50%, #0a0a0a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.transition-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.08) 0%, transparent 70%);
    z-index: 1;
}

.transition-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.5), transparent);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.transition-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.transition-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
    animation: titleGlow 3s ease-in-out infinite;
}

.transition-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 40px;
    opacity: 0.9;
}

.transition-line {
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00ff88, transparent);
    margin: 0 auto;
    border-radius: 2px;
    animation: lineGlow 2s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
    }
    50% {
        text-shadow: 0 0 40px rgba(0, 255, 136, 0.6);
    }
}

@keyframes lineGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
        transform: scaleX(1);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
        transform: scaleX(1.1);
    }
}

/* Gallery Section Update */
.gallery-section {
    padding: 60px 0 80px 0; /* Réduit le padding top */
    background: #0a0a0a;
}

/* Carousel Title Update */
.carousel-title {
    display: flex;
    align-items: center;
    justify-content: center; /* Centrer le titre */
    font-size: 1.6rem; /* Légèrement plus petit */
    font-weight: 600; /* Moins bold */
    color: #ffffff;
    margin-bottom: 25px; /* Réduit */
    padding-bottom: 10px; /* Réduit */
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
    text-align: center;
    position: relative;
}

.carousel-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ff88, transparent);
    border-radius: 1px;
}

/* Remove icon styles */
.carousel-icon {
    display: none; /* Cache les icônes */
}

/* Responsive Transition */
@media (max-width: 768px) {
    .transition-section {
        padding: 60px 0;
    }
    
    .transition-title {
        font-size: 2.5rem;
    }
    
    .transition-subtitle {
        font-size: 1.1rem;
    }
    
    .carousel-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .transition-section {
        padding: 50px 0;
    }
    
    .transition-title {
        font-size: 2rem;
    }
    
    .transition-subtitle {
        font-size: 1rem;
    }
    
    .carousel-title {
        font-size: 1.2rem;
    }
}

/* Scroll Indicator - Repositionné pour pack-hero */
.pack-hero {
    position: relative;
}

.pack-hero .scroll-indicator {
    position: absolute;
    bottom: 60px; /* Remonté de 30px à 60px */
    left: 50%;
    transform: translateX(-50%);
    z-index: 3; /* Augmenté pour être au-dessus de la vignette */
    animation: fadeInDelay 3s ease-in-out;
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    animation: fadeInDelay 3s ease-in-out;
}

.scroll-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 20px;
}

.scroll-arrow:hover {
    transform: translateY(-5px);
}

.scroll-text {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.arrow-down {
    position: relative;
    width: 30px;
    height: 30px;
}

.arrow-down span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 12px;
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    border-radius: 2px;
    transform-origin: bottom center;
    animation: arrowMove 2s ease-in-out infinite;
}

.arrow-down span:nth-child(1) {
    transform: translateX(-50%) rotate(-45deg);
    animation-delay: 0s;
}

.arrow-down span:nth-child(2) {
    transform: translateX(-50%) rotate(0deg);
    animation-delay: 0.2s;
    height: 16px;
    background: #00ff88;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
}

.arrow-down span:nth-child(3) {
    transform: translateX(-50%) rotate(45deg);
    animation-delay: 0.4s;
}

@keyframes arrowMove {
    0%, 20% {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px) rotate(var(--rotation, 0deg));
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(0px) rotate(var(--rotation, 0deg));
    }
    80%, 100% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px) rotate(var(--rotation, 0deg));
    }
}

.arrow-down span:nth-child(1) {
    --rotation: -45deg;
}

.arrow-down span:nth-child(2) {
    --rotation: 0deg;
}

.arrow-down span:nth-child(3) {
    --rotation: 45deg;
}

@keyframes fadeInDelay {
    0%, 80% { /* Augmenté de 70% à 80% pour apparition plus tardive */
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Scroll indicator responsiveness */
@media (max-width: 768px) {
    .pack-hero-content {
        padding-bottom: 100px; /* Réduit l'espace sur mobile */
    }
    
    .scroll-indicator {
        bottom: 15px; /* Plus bas sur mobile */
    }
    
    .scroll-text {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .arrow-down {
        width: 25px;
        height: 25px;
    }
    
    .arrow-down span {
        width: 2px;
        height: 10px;
    }
    
    .arrow-down span:nth-child(2) {
        height: 12px;
    }
}

@media (max-width: 480px) {
    .pack-hero-content {
        padding-bottom: 90px; /* Encore plus compact sur petit mobile */
    }
    
    .scroll-indicator {
        bottom: 10px;
    }
    
    .scroll-text {
        font-size: 0.75rem;
    }
}

.poly-count {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.poly-count:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.poly-label {
    color: #aaaaaa;
    font-size: 0.95rem;
}

.poly-value {
    color: #00ff88;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Textures */
.texture-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.texture-preview {
    position: relative;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.texture-preview:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.3);
}

.texture-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.texture-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 15px;
    text-align: center;
}

.texture-type {
    display: block;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 5px;
}

.texture-res {
    display: block;
    color: #00ff88;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Technical Specifications */
.tech-specs {
    padding: 80px 0;
    background: #0a0a0a;
}

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

.spec-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 136, 0.1);
    position: relative;
    overflow: hidden;
}

.spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00ff88, #00cc6a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.spec-card:hover::before {
    transform: scaleX(1);
}

.spec-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.15);
    border-color: rgba(0, 255, 136, 0.3);
}

.spec-card.featured {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 255, 136, 0.05));
    border-color: rgba(0, 255, 136, 0.3);
}

.spec-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.4));
}

.spec-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.spec-content p {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.spec-details {
    space-y: 10px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 8px;
}

.spec-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.spec-label {
    color: #aaaaaa;
    font-size: 0.95rem;
}

.spec-value {
    color: #00ff88;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Download Section */
.download-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #111111, #0a0a0a);
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.download-info h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.download-info p {
    color: #aaaaaa;
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.download-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.download-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #cccccc;
    font-size: 1.1rem;
}

.feature-icon {
    color: #00ff88;
    font-size: 1.2rem;
}

.download-action {
    text-align: center;
}

.price-info {
    margin-bottom: 30px;
    padding: 30px;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.price-label {
    display: block;
    color: #aaaaaa;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.price-value {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.price-note {
    display: block;
    color: #cccccc;
    font-size: 0.95rem;
}

.btn-download-main {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 40px;
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: #000000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-download-main::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: left 0.5s ease;
}

.btn-download-main:hover::before {
    left: 100%;
}

.btn-download-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 255, 136, 0.6);
}

.download-icon {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.download-subtext {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 5px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #ffffff;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 10000;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    color: #00ff88;
    transform: scale(1.1);
}

#lightbox-img {
    max-width: 100%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
}

.lightbox-prev, .lightbox-next {
    background: rgba(0, 255, 136, 0.8);
    color: #000000;
    border: none;
    padding: 15px 20px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    pointer-events: all;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.lightbox-prev::before, .lightbox-next::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
}

.lightbox-prev::before {
    border-left: 10px solid transparent;
    border-right: 15px solid #000000;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: -1px;
}

.lightbox-next::before {
    border-left: 15px solid #000000;
    border-right: 10px solid transparent;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-right: -1px;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: #00ff88;
    transform: scale(1.1);
}
