:root {
    --table-bg-color: rgba(255, 255, 255, 1);
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Roboto:wght@400;500;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #020617;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;

}

p {
    font-family: 'Roboto', sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.se-title-1,
.se-title-2 {
    font-family: 'Poppins', sans-serif !important;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 991px) {
    .se-title-2 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .se-v {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .compare-table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scroll-padding-left: clamp(140px, 45vw, 240px);
        margin-left: -15px;
        /* Extend to screen edges on mobile */
        margin-right: -15px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .compare-table {
        table-layout: fixed;
        width: max-content !important;
        min-width: 100% !important;
        border-collapse: separate !important;
        border-spacing: 0 !important;
    }

    .compare-table th,
    .compare-table td {
        padding: 12px 10px;
        width: clamp(140px, 45vw, 240px) !important;
        min-width: clamp(140px, 45vw, 240px) !important;
        max-width: clamp(140px, 45vw, 240px) !important;
        white-space: normal !important;
        word-wrap: break-word;
        box-sizing: border-box !important;
    }

    .compare-table tbody td {
        font-size: 14px;
    }

    .compare-table tbody td:first-child,
    .compare-table thead th:first-child,
    .swipe-cell {
        position: sticky;
        left: 0;
        z-index: 10;
        background-color: var(--table-bg-color);
        box-shadow: 4px 0 10px -5px rgba(0, 0, 0, 0.1);
    }

    .compare-table thead th:not(:first-child),
    .compare-table tbody td:not(:first-child) {
        scroll-snap-align: start;
    }

    .swipe-cell h2 {
        font-size: 1.1rem !important;
        line-height: 1.3;
    }

    .price-value {
        font-size: 1.8rem;
    }

    .plan-btn {
        width: 90%;
        max-width: 220px;
        display: block;
        margin: 0 auto;
        font-size: 13px;
        padding: 8px 12px;
        white-space: normal;
    }
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

.se-v {
    position: relative;
    background-color: #030510;
    background-image: linear-gradient(rgba(3, 5, 16, 0.88), rgba(3, 5, 16, 0.88)), url('../assets/hero-bg-no-boys.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 150px;
    padding-bottom: 150px;
    min-height: 100vh;
    overflow: hidden;
}

@media (min-width: 1600px) {
    .se-v {
        background-image: linear-gradient(rgba(3, 5, 16, 0.88), rgba(3, 5, 16, 0.88)), url('../assets/hero-bg-no-boys.png') !important;
    }
}

.se-head {
    text-align: center;
    margin-bottom: 3rem;
}

.se-head-subtitle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.line-dash {
    background-color: #2563eb;
    height: 2px;
    width: 40px;
}

.line-dash.left {
    margin-right: 1rem;
}

.line-dash.right {
    margin-left: 1rem;
}

.se-title-1 {
    color: #2563eb;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
    font-size: 16px;
}

.se-title-2 {
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 1rem;
    font-size: 42px;
}

.se-head p {
    color: #94a3b8;
    font-size: 1.25rem;
    margin-top: 0;
}

.filter-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 3rem;
}

.filter-nav .tab {
    transition: all 0.2s ease;
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    color: #475569;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    border-radius: 9999px;
    padding: 14px 32px;
    cursor: pointer;
}

.filter-nav .tab i {
    color: #64748b;
    margin-right: 0.5rem;
}

.filter-nav .tab.active {
    background-color: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.filter-nav .tab.active i {
    color: #ffffff;
}

.filter-nav .tab:hover:not(.active) {
    background-color: #f8fafc;
    transform: translateY(-1px);
}

.compare-table-container {
    margin-bottom: 1.5rem;
    margin-top: 30px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #e2e8f0;
    background-color: var(--table-bg-color);
    border-radius: 16px;
    clip-path: inset(0 round 16px);
    -webkit-clip-path: inset(0 round 16px);
    filter: none;
    padding-bottom: 24px;
}

.compare-table th,
.compare-table td {
    border: none;
    padding: 1.5rem;
    vertical-align: middle;
}


.compare-table th:first-child,
.compare-table td:first-child {
    border-right: 1px solid #e2e8f0 !important;
} 

.compare-table thead th {
    text-align: center;
}

.compare-table thead th:not(:first-child) {
    border-bottom: none !important;
}

.compare-table thead th:first-child {
    position: sticky;
    left: 0;
    z-index: 11;
    border-bottom: 1px solid #e2e8f0 !important;
    /* Optional: add a subtle right shadow when scrolling */
    box-shadow: 2px 0 5px -2px rgba(0, 0, 0, 0.05);
}

.swipe-cell {
    text-align: left !important;
    padding-left: 2.5rem !important;
}

.swipe-cell h2 {
    color: #080808;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.plan-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.price {
    margin-bottom: 1.5rem;
}

.price-label {
    color: #64748b;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 0.25rem;
}

.price-value {
    font-weight: 700;
    color: #0f172a;
    font-size: 2.5rem;
}

.price-value .coin {
    font-size: 1.8rem;
}

.price-value .sm-text {
    font-size: 1rem;
    color: #64748b;
}

.plan-btn {
    display: block;
    text-align: center;
    text-decoration: none;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 8px;
    font-size: 14px;
    padding: 10px 16px;
    font-weight: 600;
    width: 85%;
    max-width: 220px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    margin: 0 auto;
    box-sizing: border-box;
}

.plan-btn:hover {
    background-color: #1d4ed8;
    color: #ffffff;
}

.desc-row td {
    background-color: #f8fafc;
    color: #475569;
    font-size: 0.875rem;
    padding: 1rem 2rem;
    text-align: center;
}

.compare-table tbody tr {
    background-color: var(--table-bg-color);
    transition: background-color 0.2s;
}

.compare-table tbody tr:hover {
    background-color: #f8fafc;
}

.compare-table tbody tr:hover td:first-child {
    background-color: #f8fafc;
}

.compare-table tbody td {
    padding: 20px 24px;
    color: #334155;
    font-size: 16.8px;
    font-weight: 500;
}

.compare-table tbody td:first-child {
    font-weight: 600;
    color: #0f172a;
    width: 30%;
    text-align: left;
    padding-left: 2.5rem;
    position: sticky;
    left: 0;
    background-color: var(--table-bg-color);
    z-index: 10;
    box-shadow: 2px 0 5px -2px rgba(0, 0, 0, 0.05);
}

.compare-table tbody td:nth-child(2),
.compare-table tbody td:nth-child(3) {
    text-align: center;
    width: 35%;
}

.compare-table tbody tr:last-child td {
    border-bottom: none;
}

.compare-table thead tr:first-child th:first-child {
    border-top-left-radius: 16px;
}

.compare-table thead tr:first-child th:last-child {
    border-top-right-radius: 16px;
}

.compare-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 16px;
}

.compare-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 16px;
}

.compare-table tbody td:first-child {
    font-weight: 600;
    color: #0f172a;
    width: 30%;
}

.compare-table tbody td:nth-child(2),
.compare-table tbody td:nth-child(3) {
    text-align: center;
    width: 35%;
}

.compare-table th,
.compare-table td {
    border: none;
}

.tr-hide,
.content-hide,
.td-hide {
    display: none;
}

.custom-thead {
    display: none;
}

.check-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 8px;
}

.se-footer {
    margin-top: 3rem;
}

.footer-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}

.footer-simple-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
}

.footer-simple-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-simple-item i {
    color: #2563eb;
    font-size: 1.25rem;
}

.footer-simple-center {
    text-align: center;
    color: #e2e8f0;
}

/* Refactored Inline Styles */
.plan-header-cell {
    vertical-align: top;
}
.plan-header-cell-rel {
    vertical-align: top;
    position: relative;
}
.plan-header-title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
    margin-top: 8px;
}
.plan-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #eff6ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.plan-title-nomargin {
    margin-bottom: 0;
}
.plan-divider {
    height: 1px;
    background-color: #e2e8f0;
    width: 60%;
    margin: 0 auto 20px auto;
}
.plan-desc {
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 24px;
    min-height: 40px;
    line-height: 1.4;
    font-weight: normal;
}