/* ... (Previous CSS) ... */

/* Carousel Styles */
.sw-carousel-section {
    padding: 80px 0;
    background: #FAFAFA;
    overflow: hidden;
}

.carousel-container {
    width: 1200px;
    margin: 0 auto;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 40px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-card {
    min-width: 360px;
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    border: 1px solid #eee;
}

.cc-img-box {
    height: 200px;
    background: #FDFCF8;
    border-radius: 16px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}

.cc-h3 { font-size: 20px; margin-bottom: 10px; color: #333; }
.cc-p { font-size: 14px; color: #888; line-height: 1.6; }

/* Carousel Controls */
.carousel-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 50px; height: 50px; background: #fff; border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 24px; color: #333; z-index: 10;
    transition: 0.3s;
}
.carousel-btn:hover { background: var(--sw-orange); color: #fff; }
.carousel-btn.prev { left: -25px; }
.carousel-btn.next { right: -25px; }

/* CSS Cartoons for Carousel */

/* 1. Emoji Mart */
.emoji-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.emoji-item { font-size: 30px; animation: popUp 2s infinite; }

/* 2. Thesaurus Book */
.book-icon {
    width: 100px; height: 140px; background: #FF7043; border-radius: 4px 12px 12px 4px;
    position: relative; box-shadow: 5px 5px 0 #D84315;
}
.book-spine { position: absolute; left: 0; top: 0; bottom: 0; width: 16px; background: rgba(0,0,0,0.1); }
.book-label {
    position: absolute; top: 30px; left: 30px; right: 20px; height: 40px; background: #fff;
    display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 12px;
}

/* 3. Privacy Shield */
.shield-icon {
    width: 100px; height: 120px; background: #4CAF50;
    clip-path: polygon(50% 0, 100% 20%, 100% 80%, 50% 100%, 0 80%, 0 20%);
    display: flex; align-items: center; justify-content: center; font-size: 50px; color: #fff;
}
.shield-check { animation: pulse 2s infinite; }

/* 4. Cloud Sync */
.cloud-icon {
    width: 120px; height: 70px; background: #29B6F6; border-radius: 50px;
    position: relative;
    box-shadow: 0 10px 0 #0288D1;
}
.cloud-icon::after {
    content: ''; position: absolute; top: -30px; left: 20px; width: 50px; height: 50px;
    background: #29B6F6; border-radius: 50%;
}
.cloud-arrow {
    position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%);
    font-size: 30px; color: #0288D1; animation: floatUp 2s infinite;
}

/* 5. Game Mode */
.game-pad {
    width: 140px; height: 90px; background: #7E57C2; border-radius: 20px;
    position: relative; display: flex; align-items: center; justify-content: space-around;
    box-shadow: 0 8px 0 #512DA8;
}
.d-pad { width: 40px; height: 40px; background: #512DA8; border-radius: 50%; position: relative; }
.d-pad::before { content:''; position: absolute; top:5px; left:15px; width:10px; height:30px; background:#9FA8DA; }
.d-pad::after { content:''; position: absolute; top:15px; left:5px; width:30px; height:10px; background:#9FA8DA; }
.ab-btns { display: flex; gap: 10px; }
.ab-btn { width: 20px; height: 20px; background: #FF4081; border-radius: 50%; }

@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.2); } 100% { transform: scale(1); } }
@keyframes floatUp { 0% { transform: translate(-50%, 0); opacity: 1; } 100% { transform: translate(-50%, -20px); opacity: 0; } }

/* Additional Section: Quote */
.sw-quote-section {
    padding: 100px 0;
    text-align: center;
    background: #fff;
}
.quote-text { font-size: 32px; font-weight: 300; color: #333; margin-bottom: 20px; }
.quote-author { font-size: 16px; color: #999; }

