:root {
    --primary-color: #6E48AA;
    --primary-color-light: #9F50FF;
    --secondary-color: #2D3748;
    --accent-color: #10B981;
    --light-bg: #F6F0FF;
    --light-bg2: #F0F4FF;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--secondary-color);
}

.gradient-bg {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--light-bg2) 100%);
    position: relative;
    overflow: hidden;
}

.hero-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Network Lines SVG */
.network-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.25;
}

.network-line {
    stroke: var(--primary-color);
    stroke-width: 2.5;
    stroke-dasharray: 5, 5;
    animation: dashMove 20s linear infinite;
    opacity: 0.35;
}

.line-1 { animation-delay: 0s; }
.line-2 { animation-delay: 3s; }
.line-3 { animation-delay: 6s; }
.line-4 { animation-delay: 9s; }
.line-5 { animation-delay: 12s; }
.line-6 { animation-delay: 15s; }
.line-7 { animation-delay: 1s; }
.line-8 { animation-delay: 4s; }
.line-9 { animation-delay: 7s; }
.line-10 { animation-delay: 10s; }
.line-11 { animation-delay: 13s; }
.line-12 { animation-delay: 16s; }
.line-13 { animation-delay: 2s; }
.line-14 { animation-delay: 5s; }
.line-15 { animation-delay: 8s; }

@keyframes dashMove {
    0% {
        stroke-dashoffset: 0;
        opacity: 0.3;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        stroke-dashoffset: 100;
        opacity: 0.3;
    }
}

/* Network Nodes */
.network-node {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: nodePulse 4s infinite ease-in-out;
    opacity: 0.4;
}

.node-core {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 15px rgba(110, 72, 170, 0.4);
    opacity: 0.5;
}

.node-ring {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.2;
    animation: ringExpand 3s infinite ease-out;
}

@keyframes nodePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes ringExpand {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.node-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.node-2 {
    top: 45%;
    left: 35%;
    animation-delay: 0.5s;
}

.node-3 {
    top: 30%;
    left: 60%;
    animation-delay: 1s;
}

.node-4 {
    top: 50%;
    left: 80%;
    animation-delay: 1.5s;
}

.node-5 {
    top: 60%;
    left: 25%;
    animation-delay: 2s;
}

.node-6 {
    top: 70%;
    left: 45%;
    animation-delay: 2.5s;
}

.node-7 {
    top: 15%;
    left: 50%;
    animation-delay: 3s;
}

.node-8 {
    top: 40%;
    left: 10%;
    animation-delay: 3.5s;
}

.node-9 {
    top: 55%;
    left: 60%;
    animation-delay: 4s;
}

.node-10 {
    top: 25%;
    right: 25%;
    animation-delay: 4.5s;
}

.node-11 {
    top: 65%;
    right: 20%;
    animation-delay: 5s;
}

.node-12 {
    top: 35%;
    left: 75%;
    animation-delay: 5.5s;
}

/* User Icons */
.user-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    animation: floatUser 25s infinite ease-in-out;
    z-index: 1;
    opacity: 0.5;
}

.user-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
    opacity: 0.7;
}

.user-1 {
    top: 15%;
    left: 25%;
    animation-delay: 0s;
}

.user-2 {
    top: 40%;
    left: 12%;
    animation-delay: 4s;
}

.user-3 {
    top: 65%;
    left: 30%;
    animation-delay: 8s;
}

.user-4 {
    top: 25%;
    right: 20%;
    animation-delay: 2s;
}

.user-5 {
    top: 55%;
    right: 15%;
    animation-delay: 6s;
}

.user-6 {
    top: 75%;
    right: 35%;
    animation-delay: 10s;
}

@keyframes floatUser {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.4;
    }
    20% {
        transform: translate(20px, -30px) rotate(5deg);
        opacity: 0.5;
    }
    40% {
        transform: translate(-25px, -40px) rotate(-5deg);
        opacity: 0.45;
    }
    60% {
        transform: translate(-30px, 20px) rotate(3deg);
        opacity: 0.42;
    }
    80% {
        transform: translate(15px, 25px) rotate(-3deg);
        opacity: 0.48;
    }
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

/* Floating Bubbles - Represent Contacts */
.floating-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(110, 72, 170, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(110, 72, 170, 0.1);
    animation: floatBubble 20s infinite ease-in-out;
    opacity: 0.4;
}

.bubble-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.bubble-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}

.bubble-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 15%;
    animation-delay: 4s;
}

.bubble-4 {
    width: 70px;
    height: 70px;
    top: 70%;
    right: 10%;
    animation-delay: 6s;
}

.bubble-5 {
    width: 50px;
    height: 50px;
    top: 20%;
    left: 50%;
    animation-delay: 8s;
}

.bubble-6 {
    width: 90px;
    height: 90px;
    top: 50%;
    left: 70%;
    animation-delay: 10s;
}

@keyframes floatBubble {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.4;
    }
    50% {
        transform: translate(-20px, -50px) scale(0.9);
        opacity: 0.35;
    }
    75% {
        transform: translate(-30px, 20px) scale(1.05);
        opacity: 0.38;
    }
}

/* Deal Tags - Floating Discount Badges */
.deal-tag {
    position: absolute;
    background: linear-gradient(135deg, var(--accent-color), #0ea271);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
    animation: floatTag 15s infinite ease-in-out;
    opacity: 0.5;
}

.deal-tag i {
    font-size: 1.1rem;
}

.tag-1 {
    top: 15%;
    right: 20%;
    animation-delay: 0s;
}

.tag-2 {
    top: 55%;
    left: 20%;
    animation-delay: 5s;
}

.tag-3 {
    top: 75%;
    right: 30%;
    animation-delay: 10s;
}

@keyframes floatTag {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.4;
    }
    33% {
        transform: translate(25px, -25px) rotate(5deg);
        opacity: 0.5;
    }
    66% {
        transform: translate(-20px, -30px) rotate(-5deg);
        opacity: 0.45;
    }
}

/* Share Icons - Represent Sharing Action */
.share-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    animation: floatShare 18s infinite ease-in-out;
    opacity: 0.5;
}

.icon-1 {
    top: 25%;
    left: 30%;
    animation-delay: 1s;
}

.icon-2 {
    top: 65%;
    right: 25%;
    animation-delay: 7s;
}

@keyframes floatShare {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.4;
    }
    25% {
        transform: translate(20px, -20px) rotate(90deg);
        opacity: 0.5;
    }
    50% {
        transform: translate(-15px, -25px) rotate(180deg);
        opacity: 0.45;
    }
    75% {
        transform: translate(-20px, 15px) rotate(270deg);
        opacity: 0.42;
    }
}

/* Connection Dots - Represent Network */
.connection-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(110, 72, 170, 0.3);
    animation: pulseDot 3s infinite ease-in-out;
    opacity: 0.4;
}

.dot-1 {
    top: 20%;
    left: 25%;
    animation-delay: 0s;
}

.dot-2 {
    top: 45%;
    right: 20%;
    animation-delay: 0.75s;
}

.dot-3 {
    top: 60%;
    left: 40%;
    animation-delay: 1.5s;
}

.dot-4 {
    top: 35%;
    right: 35%;
    animation-delay: 2.25s;
}

@keyframes pulseDot {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
        box-shadow: 0 0 20px rgba(110, 72, 170, 0.3);
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
        box-shadow: 0 0 30px rgba(110, 72, 170, 0.4);
    }
}

.gradient-text {
    background: linear-gradient(to right, var(--primary-color), var(--primary-color-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-weight: 700;
}

.navbar-brand span {
    color: var(--primary-color);
}

.nav-link {
    color: var(--secondary-color);
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0ea271;
    border-color: #0ea271;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

.hero-section {
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #4A5568;
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid white;
    object-fit: cover;
    margin-left: -12px;
    transition: transform 0.3s ease;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar:hover {
    transform: translateY(-3px);
    z-index: 10;
    position: relative;
}

.social-proof-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.social-proof-number {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.social-proof-label {
    font-size: 0.9rem;
    color: #718096;
}

.hero-img {
    max-width: 100%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-color-light));
}

.step-card {
    padding: 30px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--light-bg2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
}

.step-card h3 {
    font-weight: 600;
    margin-bottom: 15px;
}

.deal-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.deal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.deal-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.deal-content {
    padding: 20px;
}

.deal-discount {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.deal-earn {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* UGC Video Section Styles */
/* Income Calculator Section */
.calculator-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.calculator-inputs {
    margin-bottom: 40px;
}

.input-group {
    margin-bottom: 30px;
}

.input-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.input-group label i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.input-group input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: linear-gradient(to right, var(--light-bg), var(--light-bg2));
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.input-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(110, 72, 170, 0.3);
    transition: all 0.3s ease;
}

.input-group input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    background: var(--primary-color-light);
}

.input-group input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 10px rgba(110, 72, 170, 0.3);
    transition: all 0.3s ease;
}

.input-group input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.1);
    background: var(--primary-color-light);
}

.input-value {
    text-align: center;
    margin-top: 15px;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.input-value span {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.calculator-results {
    margin-top: 40px;
}

.result-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-light) 100%);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(110, 72, 170, 0.3);
    transition: transform 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
}

.result-card.annual {
    background: linear-gradient(135deg, var(--accent-color) 0%, #0ea271 100%);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.result-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.result-content {
    flex: 1;
}

.result-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 5px;
}

.result-value {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.result-breakdown {
    background: #F8FAFC;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #E2E8F0;
}

.breakdown-item:last-child {
    border-bottom: none;
}

.breakdown-label {
    color: #718096;
    font-size: 0.95rem;
}

.breakdown-value {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

@media (max-width: 767.98px) {
    .calculator-card {
        padding: 25px;
    }
    
    .result-value {
        font-size: 2rem;
    }
    
    .result-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

.ugc-video-section {
    padding: 80px 0;
    background: white;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 280px;
    margin: 0 auto 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.video-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.video-container video {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    background-color: transparent;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-overlay:hover {
    opacity: 0.7;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.play-button:hover {
    transform: scale(1.1);
    background: white;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.play-button i {
    font-size: 28px;
    color: var(--primary-color);
    margin-left: 4px;
}

.video-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    height: 100%;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-info h5 {
    margin-bottom: 5px;
    font-weight: 600;
}

.testimonial-info span {
    color: #718096;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-light) 100%);
    padding: 100px 0;
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-white {
    background-color: white;
    color: var(--primary-color);
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.footer {
    background-color: #F8FAFC;
    padding: 80px 0 40px;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: #4A5568;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #EDF2F7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #E2E8F0;
}

.footer-bottom p {
    color: #718096;
}

@media (max-width: 991.98px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-section {
        text-align: center;
    }
    
    .social-proof {
        justify-content: center;
    }
    
    .step-card, .deal-card, .testimonial-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .hero-animation {
        opacity: 0.6;
    }
    
    .network-lines {
        opacity: 0.2;
    }
    
    .network-node {
        transform: scale(0.7);
    }
    
    .node-core {
        width: 12px;
        height: 12px;
    }
    
    .node-ring {
        width: 30px;
        height: 30px;
    }
    
    .user-icon {
        width: 40px;
        height: 40px;
    }
    
    .user-icon i {
        font-size: 1rem;
    }
    
    .floating-bubble {
        width: 50px !important;
        height: 50px !important;
    }
    
    .deal-tag {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
    
    .share-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .connection-dot {
        width: 8px;
        height: 8px;
    }
    
    .social-proof {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .social-proof-text {
        text-align: center;
    }
    
    .avatar {
        width: 40px;
        height: 40px;
        margin-left: -10px;
    }
    
    .video-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .video-container {
        max-width: 300px;
    }
    
    .ugc-video-section {
        padding: 60px 0;
    }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .video-grid {
        justify-content: space-around;
    }
    
    .video-container {
        flex: 0 0 calc(33.333% - 20px);
        max-width: 250px;
    }
}

@media (min-width: 1200px) {
    .video-grid {
        gap: 40px;
    }
}

