:root {
    --primary-teal: #4dd0e1;
    --primary-pink: #ff69b4;
    --dark-text: #2d3748;
    --gray-text: #718096;
    --light-bg: #f7fafc;
    --white: #ffffff;
    --border: #e2e8f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-text);
    background: linear-gradient(180deg, #e0f7fa 0%, #fce4ec 30%, #ffffff 60%);
    line-height: 1.6;
}

/* =================== TOP BAR =================== */
.top-bar {
    background: white;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
}

.top-bar-link {
    color: var(--gray-text);
    text-decoration: none;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.3s;
}

.top-bar-link:hover {
    color: var(--primary-pink);
}

/* =================== HERO SECTION =================== */
.hero-section {
    padding: 3rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(77, 208, 225, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.hero-title .compare-text {
    color: var(--dark-text);
}

.hero-title .choose-text {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title .save-text {
    color: var(--dark-text);
}

.hero-description {
    font-size: 0.95rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 450px;
}

/* Floating animation on hover for the cards */
@keyframes card-hover {
    0% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-8px) scale(1.05);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

/* Product Cards with hover animation */
.product-cards-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 2rem 0;
}

.product-card-hero {
    background: white;
    border-radius: 16px;
    padding: 1.2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 3px solid transparent;
    animation: card-hover 0.4s ease-in-out infinite;
}

.product-card-hero:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-card-hero.card-1 {
    border-color: var(--primary-teal);
}

.product-card-hero.card-2 {
    border-color: var(--primary-pink);
}

.product-card-hero.card-3 {
    border-color: #9c27b0;
}

.product-card-hero.card-4 {
    border-color: #ff9800;
}

/* Adding VS badge */
.vs-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 3;
}

/* Feature Icons Grid */
.feature-icons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-icon-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.feature-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.feature-icon-box.teal {
    background: rgba(77, 208, 225, 0.15);
    color: #00acc1;
}

.feature-icon-box.pink {
    background: rgba(255, 105, 180, 0.15);
    color: #ff1493;
}

.feature-icon-text {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark-text);
}

/* CTA Buttons */
.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-gradient-primary {
    background: linear-gradient(135deg, #4dd0e1, #ff69b4);
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
    cursor: pointer;
}

.btn-gradient-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
}

.btn-outline-secondary {
    background: white;
    color: var(--dark-text);
    border: 2px solid var(--border);
    padding: 0.9rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-outline-secondary:hover {
    border-color: var(--primary-teal);
    color: var(--primary-teal);
}

/* Trust Section */
.trust-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-avatars {
    display: flex;
}

.trust-avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -8px;
}

.trust-avatars img:first-child {
    margin-left: 0;
}

.trust-text {
    font-size: 0.8rem;
    color: var(--gray-text);
}

.trust-text strong {
    color: var(--dark-text);
    font-weight: 700;
}

/* Product Cards Floating - 4 Cards Grid */
.product-cards-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 2rem 0;
}

.product-card-hero {
    background: white;
    border-radius: 16px;
    padding: 1.2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 3px solid transparent;
}

.product-card-hero:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-card-hero.card-1 {
    border-color: var(--primary-teal);
}

.product-card-hero.card-2 {
    border-color: var(--primary-pink);
}

.product-card-hero.card-3 {
    border-color: #9c27b0;
}

.product-card-hero.card-4 {
    border-color: #ff9800;
}

.card-badge-top {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
}

.card-badge-top.teal-badge {
    background: linear-gradient(135deg, #4dd0e1, #00acc1);
}

.card-badge-top.purple-badge {
    background: linear-gradient(135deg, #9c27b0, #7b1fa2);
}

.card-badge-top.orange-badge {
    background: linear-gradient(135deg, #ff9800, #f57c00);
}

.product-card-hero h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.card-rating {
    display: flex;
    gap: 0.15rem;
    margin-bottom: 0.4rem;
}

.card-rating i {
    color: #ffc107;
    font-size: 0.75rem;
}

.card-reviews {
    font-size: 0.7rem;
    color: var(--gray-text);
    margin-bottom: 0.8rem;
}

.card-spec-list {
    margin-bottom: 1rem;
}

.card-spec-item {
    font-size: 0.75rem;
    color: var(--gray-text);
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.card-spec-item i {
    color: var(--primary-teal);
    font-size: 0.6rem;
}

.card-price {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4dd0e1, #ff69b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.2rem;
}

.card-price-label {
    font-size: 0.7rem;
    color: var(--gray-text);
}

/* =================== PRODUCT COMPARISON SECTION =================== */
.comparison-section {
    padding: 4rem 0;
}

.section-heading {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 3rem;
    color: var(--dark-text);
}

/* Comparison Product Cards - REMOVED */
.comparison-products-grid {
    display: none;
}

.comparison-product-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

.trending-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    padding: 0.4rem 0.85rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 2;
}

.heart-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s;
}

.heart-icon:hover {
    background: var(--primary-pink);
    color: white;
}

.comparison-product-image {
    height: 220px;
    overflow: hidden;
}

.comparison-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comparison-product-content {
    padding: 1.5rem;
}

.product-category-tag {
    color: var(--primary-teal);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.product-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.price-current {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4dd0e1, #ff69b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-original {
    font-size: 1.1rem;
    color: var(--gray-text);
    text-decoration: line-through;
}

.product-rating-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.rating-stars-row {
    display: flex;
    gap: 0.15rem;
}

.rating-stars-row i {
    color: #ffc107;
    font-size: 0.85rem;
}

.rating-count {
    font-size: 0.8rem;
    color: var(--gray-text);
}

.view-btn {
    width: 100%;
    padding: 0.85rem;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.view-btn-teal {
    background: linear-gradient(135deg, #4dd0e1, #00acc1);
    color: white;
}

.view-btn-pink {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
}

.view-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Comparison Table */
.comparison-table-container {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead {
    background: linear-gradient(135deg, #4dd0e1, #ff69b4);
}

.comparison-table thead th {
    color: white;
    font-weight: 700;
    padding: 1.1rem 0.8rem;
    text-align: center;
    font-size: 0.85rem;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--border);
}

.comparison-table tbody tr:nth-child(even) {
    background: #f8fafc;
}

.comparison-table tbody td {
    padding: 0.95rem 0.8rem;
    text-align: center;
    font-size: 0.8rem;
}

.comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--dark-text);
}

.section-row-header {
    background: linear-gradient(135deg, rgba(77, 208, 225, 0.15), rgba(255, 105, 180, 0.15)) !important;
    font-weight: 700;
    color: var(--dark-text);
}

.check-mark {
    color: var(--primary-teal);
    font-size: 1.1rem;
}

.check-mark.pink-check {
    color: var(--primary-pink);
}

.action-btn-row td {
    padding: 1.2rem 1.1rem;
}

.table-choose-btn {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
}

/* =================== WORTH A LOOK SECTION =================== */
.worth-section {
    padding: 3rem 0;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-text);
    margin-bottom: 3rem;
    font-size: 0.95rem;
}

.worth-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.worth-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
}

.worth-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.worth-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.worth-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.worth-content {
    padding: 1.3rem;
}

.worth-category {
    color: var(--primary-teal);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.worth-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
}

.worth-rating {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.7rem;
}

.worth-stars {
    display: flex;
    gap: 0.1rem;
}

.worth-stars i {
    color: #ffc107;
    font-size: 0.75rem;
}

.worth-rating-text {
    font-size: 0.75rem;
    color: var(--gray-text);
}

.worth-price {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4dd0e1, #ff69b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.3rem;
}

.worth-original-price {
    font-size: 0.85rem;
    color: var(--gray-text);
    text-decoration: line-through;
    margin-bottom: 1rem;
}

.worth-btn {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
}

/* =================== DEALS SECTION =================== */
.deals-section {
    padding: 3rem 0;
}

/* =================== FIND YOUR MATCH SECTION =================== */
.match-section {
    padding: 4rem 0;
    background: white;
    border-radius: 25px;
    margin: 3rem 0;
}

.match-heading {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
}

.match-subheading {
    text-align: center;
    color: var(--gray-text);
    margin-bottom: 3rem;
    font-size: 0.95rem;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.filter-item label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.7rem;
    color: var(--dark-text);
    font-size: 0.9rem;
}

.filter-select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--dark-text);
    transition: all 0.3s;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-teal);
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.checkbox-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-teal);
}

.checkbox-option label {
    font-size: 0.9rem;
    color: var(--dark-text);
    cursor: pointer;
}

.find-btn {
    width: 100%;
    padding: 1.1rem;
    background: linear-gradient(135deg, #4dd0e1, #ff69b4);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.find-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
}

/* =================== FAQ SECTION =================== */
.faq-section {
    padding: 3rem 0;
}

.faq-heading {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
}

.faq-subheading {
    text-align: center;
    color: var(--gray-text);
    margin-bottom: 3rem;
    font-size: 0.95rem;
}

.accordion-item {
    background: white;
    border: none;
    border-radius: 12px !important;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    font-weight: 700;
    font-size: 1.05rem;
    padding: 1.3rem 1.5rem;
    background: white;
    border: none;
    color: var(--dark-text);
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(77, 208, 225, 0.1), rgba(255, 105, 180, 0.1));
    color: var(--dark-text);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 1.3rem 1.5rem;
    color: var(--gray-text);
    line-height: 1.7;
    font-size: 0.9rem;
}

/* =================== BLOG SECTION =================== */
.blog-section {
    padding: 3rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.blog-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.blog-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    padding: 0.4rem 0.85rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
}

.blog-content {
    padding: 1.3rem;
}

.blog-date {
    color: var(--gray-text);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.blog-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 0.85rem;
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more-link {
    color: var(--primary-pink);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s;
}

.read-more-link:hover {
    gap: 0.7rem;
}

.load-more-button {
    display: block;
    margin: 0 auto;
    padding: 0.95rem 2.5rem;
    background: white;
    color: var(--dark-text);
    border: 2px solid var(--border);
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.load-more-button:hover {
    border-color: var(--primary-teal);
    color: var(--primary-teal);
}

/* =================== FOOTER =================== */
.footer {
    background: #1a202c;
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-column h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1.3rem;
}

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

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.social-icons {
    display: flex;
    gap: 0.8rem;
}

.social-icons a {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    font-size: 0.85rem;
}

.social-icons a:hover {
    background: var(--primary-teal);
}

/* =================== RESPONSIVE =================== */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3rem;
    }

    .comparison-products-grid {
        grid-template-columns: 1fr;
    }

    .worth-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .filter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .product-cards-container {
        display: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .filter-grid,
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .feature-icons-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta-buttons {
        flex-direction: column;
    }

    .worth-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-row {
        flex-direction: column;
        gap: 1rem;
    }

    .comparison-table {
        font-size: 0.75rem;
    }

    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 0.7rem 0.5rem;
    }
}


.vs-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    color: #ff1493;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    font-weight: 900;
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    z-index: 3;
    border: 4px solid #ff1493;
    box-shadow: 0 0 15px rgba(255, 20, 90, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulseEffect 1.5s ease-in-out infinite;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    text-shadow: 0 0 15px rgba(255, 20, 90, 0.4), 0 0 25px rgba(255, 20, 90, 0.6);
}

/* Pulsating Animation */
@keyframes pulseEffect {
    0% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 10px rgba(255, 20, 90, 0.4);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 0 25px rgba(255, 20, 90, 0.8);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 10px rgba(255, 20, 90, 0.4);
    }
}

@media (max-width: 767px) {
    .vs-badge {
        font-size: 1.8rem;
        padding: 0.9rem 2rem;
    }
}