/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --vortex-bg-primary: #0a0e1a;
    --vortex-bg-secondary: #111827;
    --vortex-bg-card: rgba(17, 24, 39, 0.6);
    --vortex-text-primary: #ffffff;
    --vortex-text-secondary: #9ca3af;
    --vortex-text-muted: #6b7280;
    --vortex-accent-primary: #f59e0b;
    --vortex-accent-secondary: #fbbf24;
    --vortex-accent-cyan: #06b6d4;
    --vortex-border: rgba(251, 191, 36, 0.2);
    --vortex-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--vortex-bg-primary);
    color: var(--vortex-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.vortex-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.vortex-gradient-text {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Background Pattern */
.vortex-bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(251, 191, 36, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    z-index: 0;
}

/* Navigation */
.vortex-nav {
    position: fixed;
    top: 16px;
    left: 16px;
    right: 16px;
    z-index: 1000;
    background: var(--vortex-bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--vortex-border);
    border-radius: 16px;
    padding: 16px 24px;
}

.vortex-nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vortex-logo {
    font-size: 24px;
    font-weight: 700;
}

.vortex-nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.vortex-nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.vortex-nav-link:hover {
    color: #ffffff;
}

.vortex-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
}

.vortex-mobile-menu {
    display: none;
    padding-top: 16px;
}

.vortex-mobile-menu.active {
    display: block;
}

.vortex-mobile-links {
    list-style: none;
    padding: 16px 0 0;
}

.vortex-mobile-links li {
    padding: 12px 0;
}

/* Hero Section */
.vortex-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
}

.vortex-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.vortex-hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
}

.vortex-hero-subtitle {
    font-size: 20px;
    color: var(--vortex-text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.vortex-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.vortex-btn {
    font-size: 18px;
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    text-align: center;
}

.vortex-btn-primary {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1f2937;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.vortex-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(251, 191, 36, 0.4);
}

.vortex-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid var(--vortex-border);
}

.vortex-btn-secondary:hover {
    border-color: var(--vortex-accent-primary);
    background: rgba(251, 191, 36, 0.1);
}

/* Feature Cards */
.vortex-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.vortex-feature-card {
    background: var(--vortex-bg-card);
    border: 1px solid var(--vortex-border);
    border-radius: 12px;
    padding: 24px;
    transition: border-color 0.3s;
}

.vortex-feature-card:hover {
    border-color: rgba(251, 191, 36, 0.4);
}

.vortex-feature-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 16px;
    color: var(--vortex-accent-primary);
}

.vortex-feature-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--vortex-accent-primary);
    margin-bottom: 8px;
}

.vortex-feature-desc {
    font-size: 14px;
    color: #fff;
}

/* Rankings Section */
.vortex-rankings {
    position: relative;
    padding: 48px 0 80px;
}

.vortex-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.vortex-section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.vortex-section-subtitle {
    font-size: 18px;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
}

.vortex-cards-grid {
    display: grid;
    gap: 20px;
}

.vortex-card {
    background: var(--vortex-bg-card);
    border: 1px solid var(--vortex-border);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.2s;
    backdrop-filter: blur(10px);
}

.vortex-card:hover {
    border-color: rgba(251, 191, 36, 0.5);
}

.vortex-card-featured {
    border-width: 2px;
    border-color: rgba(251, 191, 36, 0.6);
}

.vortex-card-layout {
    display: flex;
    gap: 24px;
}

.vortex-rank-badge {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.vortex-rank-badge-featured {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1f2937;
}

.vortex-rank-badge-standard {
    background: rgba(55, 65, 81, 0.5);
    color: var(--vortex-accent-primary);
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.vortex-card-content {
    flex: 1;
}

.vortex-card-header {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-start;
}

.vortex-card-info {
    /*flex: 1;*/
}

.vortex-card-info-bet {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 12px;
}

.vortex-sportsbook-name {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    display: inline-block;
}

.vortex-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(251, 191, 36, 0.2);
    color: var(--vortex-accent-primary);
    font-size: 11px;
    font-weight: 600;
    border-radius: 6px;
    border: 1px solid rgba(251, 191, 36, 0.3);
    margin-left: 12px;
}

.vortex-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.vortex-stars {
    display: flex;
    gap: 4px;
}

.vortex-star {
    width: 16px;
    height: 16px;
    fill: var(--vortex-accent-primary);
    color: var(--vortex-accent-primary);
}

.vortex-star-empty {
    fill: none;
    color: #374151;
}

.vortex-rating-number {
    font-size: 20px;
    font-weight: 700;
}

.vortex-rating-max {
    color: #fff;
}

.vortex-bonus-box {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
    text-align: center;
}

.vortex-bonus-label {
    font-size: 12px;
    color: #fff;
    margin-bottom: 4px;
    color: #ffffff;
}

.vortex-bonus-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--vortex-accent-primary);
}

.vortex-pros-list {
    list-style: none;
}

.vortex-pros-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--vortex-text-secondary);
    font-size: 14px;
    margin-bottom: 6px;
}

.vortex-check-icon {
    width: 16px;
    height: 16px;
    color: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
}

.vortex-card-cta {
    flex-shrink: 0;
    padding: 20px 20px;
}

.vortex-cta-button {
    display: block;
    width: 240px;
    padding: 14px 40px;
    text-align: center;
}

/* Reviews Section */
.vortex-reviews {
    position: relative;
    padding-bottom: 80px;
}

.vortex-review-card {
    margin-bottom: 24px;
}

.vortex-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.vortex-review-title {
    font-size: 24px;
    font-weight: 700;
    min-width: 135px;
}

.vortex-review-rank {
    color: var(--vortex-accent-primary);
    font-weight: 700;
    font-size: 18px;
}

.vortex-review-meta {
    font-size: 14px;
    color: #fff;
}

.vortex-review-rating-box {
    text-align: right;
}

.vortex-review-rating-number {
    font-size: 32px;
    font-weight: 700;
}

.vortex-review-rating-max {
    font-size: 14px;
    color: #fff;
}

.vortex-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.vortex-info-box {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 8px;
    padding: 12px;
}

.vortex-info-label {
    font-size: 12px;
    color: #fff;
    margin-bottom: 4px;
}

.vortex-info-value {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}

.vortex-review-description {
    color: var(--vortex-text-secondary);
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.7;
}

.vortex-review-details {
    padding-top: 10px;
    border-top: 1px solid #374151;
    margin-top: 16px;
    display: none;
}

.vortex-review-details p {
    padding-bottom: 20px;
        color: var(--vortex-text-secondary);
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.7;
}

.vortex-review-details.active {
    display: block;
}

.vortex-details-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vortex-why-bet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

.vortex-why-bet-item {
    display: flex;
    gap: 8px;
}

.vortex-checkmark-icon {
    width: 20px;
    height: 20px;
    color: #10b981;
    flex-shrink: 0;
}

.vortex-why-bet-content h5 {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.vortex-why-bet-content p {
    font-size: 12px;
    color: #fff;
}

.vortex-review-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.vortex-review-actions .vortex-btn {
    flex: 1;
    font-size: 14px;
    padding: 12px 24px;
}

/* Comparison Table */
.vortex-comparison {
    position: relative;
    padding-bottom: 80px;
}

.vortex-table-wrapper {
    background: var(--vortex-bg-card);
    border: 1px solid var(--vortex-border);
    border-radius: 12px;
    padding: 32px;
    overflow-x: auto;
}

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

.vortex-table th {
    text-align: left;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.vortex-table td {
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
}

.vortex-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.vortex-table-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vortex-table-rank {
    color: var(--vortex-accent-cyan);
    font-weight: 700;
}

.vortex-table-name {
    color: #ffffff;
    font-weight: 600;
}

/* Guide Section */
.vortex-guide {
    position: relative;
    padding-bottom: 80px;
}

.vortex-guide-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.vortex-guide-card {
    background: var(--vortex-bg-card);
    border: 1px solid var(--vortex-border);
    border-radius: 12px;
    padding: 32px;
    transition: transform 0.3s;
}

.vortex-guide-card:hover {
    transform: translateY(-8px);
}

.vortex-guide-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.vortex-guide-icon-wrapper {
    padding: 12px;
    background: linear-gradient(135deg, #06b6d4 0%, #0284c7 100%);
    border-radius: 8px;
}

.vortex-guide-icon {
    width: 32px;
    height: 32px;
    color: #ffffff;
}

.vortex-guide-title {
    font-size: 20px;
    font-weight: 700;
}

.vortex-guide-content {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* FAQ Section */
.vortex-faq {
    position: relative;
    padding-bottom: 80px;
}

.vortex-faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.vortex-faq-item {
    background: var(--vortex-bg-card);
    border: 1px solid var(--vortex-border);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.vortex-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s;
}

.vortex-faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.vortex-faq-icon {
    width: 24px;
    height: 24px;
    color: var(--vortex-accent-cyan);
    flex-shrink: 0;
}

.vortex-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.vortex-faq-answer.active {
    max-height: 500px;
}

.vortex-faq-answer-content {
    padding: 0 24px 24px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* Footer */
.vortex-footer {
    position: relative;
    padding: 48px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vortex-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.vortex-footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.vortex-footer-text {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.vortex-footer-links {
    list-style: none;
}

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

.vortex-footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.vortex-footer-link:hover {
    color: #ffffff;
}

.vortex-footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .vortex-nav-links {
        display: none;
    }

    .vortex-mobile-toggle {
        display: block;
    }

    .vortex-hero-title {
        font-size: 40px;
    }

    .vortex-section-title {
        font-size: 36px;
    }

    .vortex-features {
        grid-template-columns: 1fr;
    }

    .vortex-guide-grid {
        grid-template-columns: 1fr;
    }

    .vortex-card-layout {
        flex-direction: column;
    }

    .vortex-card-header {
        flex-direction: column;
    }

    .vortex-cta-button {
        width: 100%;
    }

    .vortex-review-header {
        flex-direction: column;
        /* align-items: flex-start; */
    }

    .vortex-review-rating-box {
        text-align: left;
    }

    .vortex-table-wrapper {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .vortex-hero-title {
        font-size: 32px;
    }

    .vortex-cta-group {
        flex-direction: column;
    }

    .vortex-btn {
        width: 100%;
    }
}

/* Vaseto Redesign :D  */

.responsive-img {
    width: 100%;
    max-width: 200px;
}

.desktop-image {
    /*max-width: 500px;*/
    width: 100%;
}

.mobile-image {
    /*max-width: 400px;*/
    width: 100%;
}

.hidden {
    display: none;
}

@media (min-width: 480px) {
    /*.desktop-image {
        display: block;
    }
    .mobile-image {
        display: none;
    } */
}

@media (max-width: 480px) {
    /*.desktop-image {
        display: none;
    }
    .mobile-image {
        display: block;
    }*/
}

.vortex-card-header {
    align-items: center;
}

.vortex-card-info,
.vortex-card-image,
.vortex-card-cta {
    /*border: 1px solid red;*/
}

@media (max-width: 480px) {
    .vortex-btn {
        font-size: 20px;
    }

    .vortex-container {
        padding: 10px;
    }
    .vortex-card {
        padding: 10px;
    }
    .vortex-card-info {
        width: 100%;
    }
    .vortex-card-image {
        width: 100%;
    }
    .vortex-card-cta {
        width: 100%;
    }

    .vortex-rating {
        justify-content: center;
    }

    .vortex-card-info-bet {
        justify-content: center;
    }

    .vortex-pros-list li {
        font-size: 17px;
        justify-content: center;
        align-items: center;
    }

    .vortex-sportsbook-name {
        font-size: 36px;
    }

    .vortex-check-icon {
        width: 18px;
        height: 18px;
    }

    .vortex-card-layout {
        gap: 0;
    }

    .vortex-rank-badge {
        position: absolute;
        top: 10px;
        left: 10px;
    }

    .vortex-card-info-bet {
        justify-content: center;
        margin-left: 24px;
    }

    .vortex-rankings {
        padding: 48px 0 20px;
    }

    .vortex-faq,
    .vortex-guide,
    .vortex-comparison,
    .vortex-reviews {
        padding-bottom: 20px;
    }

    .vortex-table thead tr th {
        text-align: center;
    }
    .vortex-table {
        font-size: 14px;
    }

    .vortex-table-brand {
        gap: 8px;
    }
    .vortex-table tr {
        text-align: center;
    }
    .vortex-table td {
        padding: 10px 0;
    }
    .vortex-table-wrapper {
        padding: 8px;
    }

}

/* Mobile Media Breakpoints */
@media (max-width: 1400px) {
    .mobile-image {
        max-width: 560px;
    }
}

@media (max-width: 1200px) {
    .mobile-image {
        max-width: 540px;
    }
}

@media (max-width: 992px) {
    .mobile-image {
        max-width: 350px;
    }
}

@media (max-width: 820px) {
    .mobile-image {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .mobile-image {
        max-width: 200px;
    }
}

@media (max-width: 576px) {
    .mobile-image {
        max-width: 200px;
    }
}

@media (max-width: 540px) {
    .mobile-image {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .mobile-image {
        max-width: 200px;
    }
}

.vortex-rating-max {
    color: #ffffff;
}

.vortex-card-info {
    min-width: 262px;
}

.mobile-image {
    /*border: 1px solid red;*/
}

/* Tablet Breakpoint Fixes */

@media only screen and (min-width: 480px) and (max-width: 768px) {
    .vortex-rank-badge {
        /*position: absolute;
        top: 10px;
        left: 10px;*/
    }
    .vortex-card-header {
        /*flex-direction: row;*/
        /*flex-direction: column;*/
    }
    .mobile-image {
        /*max-width: 400px;*/
    }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
    .vortex-card-featured {
        /*border: 1px solid red;*/
    }
    .vortex-rank-badge {
        /*position: absolute;
        top: 10px;
        left: 10px;*/
    }
    .vortex-card-header {
        /*flex-direction: column;*/
    }

}

@media only screen and (min-width: 820px) and (max-width: 996px) {
    .vortex-card {
        padding: 20px 0;
        padding-top: 20px;
        padding-right: 0;
        padding-bottom: 20px;
        padding-left: 20px;
    }
    .vortex-card-layout {
        gap: 0;        
    }
    .vortex-card-header {
        margin-left: -55px;
        flex-direction: column; 
    }
    .vortex-pros-list li {
        font-size: 17px;
        justify-content: center;
        align-items: center;
    }
}

@media only screen and (min-width: 768px) and (max-width: 820px) {
    .vortex-rank-badge {
        position: absolute;
        top: 10px;
        left: 10px;
    }
    .vortex-card-header {
        flex-direction: column;
    }
    .mobile-image {
        /*max-width: 200px;*/
    }
    .vortex-pros-list li {
        font-size: 20px;
        justify-content: center;
        align-items: center;
    }
}

@media only screen and (min-width: 540px) and (max-width: 820px) {
    .vortex-card-header {
        /*flex-direction: row;*/
    }
    .mobile-image {
        /*max-width: 200px;*/
    }
    .vortex-pros-list li {
        font-size: 20px;
        justify-content: center;
        align-items: center;
    }
}

@media only screen and (min-width: 460px) and (max-width: 768px) {
    .vortex-card-header {
        /*flex-direction: row;*/
    }
    .mobile-image {
        /*max-width: 200px;*/
    }
    .vortex-pros-list li {
        font-size: 18px;
        justify-content: center;
        align-items: center;
    }
}

.mobile-image {
    width:100%!important;
    max-width: 375px!important;
}

.logoback {
    background-color: #fff;
    padding: 10px;
    border-left: 15px solid #f59e0b;
    border-radius: 20px;
    box-shadow: inset 0 0 5px #000000;
}

@media (max-width: 768px) {
.titleclass {
    text-align: center;
}

.vortex-review-rank {
    
    font-size: 24px;
}

.vortex-review-title {
    
    margin-bottom: 10px;
}
}

/* ===== Redesigned Reviews (V2) — final ===== */
.review-card--v2 { padding: 24px 24px 28px; }

/* Two-row header:
   Row 1 = centered logo (spans both columns)
   Row 2 = left (rank+title) | right (rating) */
.review-v2__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 14px 16px;
  margin-bottom: 18px;
}
.review-v2__logo {
  grid-column: 1 / -1;          /* span full width */
  justify-self: center;         /* truly centered */
}
.review-v2__id {
  grid-column: 1 / 2;
  display: flex;
  align-items: baseline;
  gap: 10px;
  min-width: 180px;
}
.review-v2__rank {
  color: var(--vortex-accent-primary);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .5px;
}
.review-v2__title { font-size: 24px; font-weight: 800; }
.review-v2__rating { grid-column: 2 / 3; text-align: right; min-width: 90px; }
.review-v2__rating-num { font-size: 32px; font-weight: 800; }
.review-v2__rating-max { font-size: 14px; color: #fff; }

/* Logo chip (white plate + orange trim + soft glow) */
.brand-chip { position: relative; display: inline-flex; align-items: center; filter: drop-shadow(0 6px 18px rgba(0,0,0,.35)); border-radius: 16px; overflow: hidden; }
.brand-chip__trim { width: 10px; height: 48px; background: linear-gradient(135deg, var(--vortex-accent-secondary), var(--vortex-accent-primary)); }
.brand-chip__body { display: grid; place-items: center; background: #ffffff; padding: 6px 18px; height: 48px; }
.brand-chip__logo { max-height: 35px; width: auto; display: block; image-rendering: -webkit-optimize-contrast; }

/* BIG Bonus banner */
/* Compact, centered bonus banner */
/* Register property for smooth animation */
@property --border-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0turn;
}

/* Orange gradient banner with animated border */
.bonus-banner {
  position: relative;
  margin: 8px auto 18px;
  max-width: 700px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%); /* <-- Orange interior */
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
  overflow: hidden;
  isolation: isolate;
}

/* Animated gradient border ring */
.bonus-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(
    from var(--border-angle),
    #f59e0b,
    #fbbf24,
    #06b6d4,
    #f59e0b
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: spin 3s linear infinite;
  z-index: 0;
}

/* Pause rotation on hover (optional) */
.bonus-banner:hover::before {
  animation-play-state: paused;
}

/* Text inside the banner */
.bonus-banner__inner {
  position: relative;
  z-index: 1;
  background: transparent;
  padding: 12px 18px;
  text-align: center;
  line-height: 1.25;
}

.bonus-banner__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: rgba(30, 30, 30, 0.9);
  margin-bottom: 2px;
}

.bonus-banner__value {
  display: block;
  font-size: 22px;
  font-weight: 600;
  color: #111;
}

/* Smooth spin animation */
@keyframes spin {
  to {
    --border-angle: 1turn;
  }
}



/* Specs row — 3 pills on one line (desktop) */
.review-v2__specs { margin: 14px 0 6px; }
.review-v2__specs--three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.spec-pill { background: rgba(31,41,55,.55); border: 1px solid rgba(251,191,36,.25); border-radius: 10px; padding: 10px 12px; display: grid; gap: 4px; }
.spec-pill__label { font-size: 12px; color: #fff; opacity: .9; }
.spec-pill__value { font-size: 16px; font-weight: 800; color: var(--vortex-accent-secondary); }

/* Years line (small, subtle under specs) */
.review-v2__years { font-size: 12px; color: var(--vortex-text-secondary); margin: 6px 0 10px; }

/* Mobile tweaks */
@media (max-width: 768px) {
  .review-v2__header { grid-template-columns: 1fr; grid-template-rows: auto auto auto; gap: 10px; text-align: center; }
  .review-v2__id { grid-column: 1 / -1; justify-content: center; }
  .review-v2__rating { grid-column: 1 / -1; text-align: center; }
  .bonus-banner__value { font-size: 24px; }
  .review-v2__specs--three { grid-template-columns: 1fr; } /* stack 3 pills on mobile for clarity */
}

/* Hide the old logo box if present anywhere */
.logoback { display: none !important; }

.bigcta {
    text-decoration: none;
}