:root {
    --primary: #00ff9d;
    --primary-dark: #00cc7a;
    --secondary: #2d3436;
    --accent: #6c5ce7;
    --dark-bg: #1a1a1a;
    --darker-bg: #111111;
    --card-bg: #222222;
    --text-main: #ffffff;
    --text-muted: #b2bec3;
    --success: #00b894;
    --warning: #fdcb6e;
    --danger: #ff7675;
    --font-main: 'Inter', sans-serif;
    --radius: 12px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --glow: 0 0 20px rgba(0, 255, 157, 0.2);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--dark-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    color: var(--darker-bg);
    box-shadow: var(--glow);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 255, 157, 0.4);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--darker-bg);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header */
header {
    background: var(--darker-bg);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.nav-links {
    display: flex;
    gap: 30px;
}

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

/* Hero */
.hero {
    padding: 80px 0;
    text-align: center;
    background: radial-gradient(circle at top center, rgba(0, 255, 157, 0.05) 0%, transparent 70%);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Comparison Table */
.comparison-section {
    padding: 60px 0;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 15px;
}

.comparison-table th {
    text-align: left;
    padding: 20px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.comparison-table tr.provider-row {
    background: var(--card-bg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.comparison-table tr.provider-row:hover {
    transform: scale(1.01);
    background: #2a2a2a;
}

.comparison-table td {
    padding: 20px;
    vertical-align: middle;
}

.comparison-table td:first-child {
    border-top-left-radius: var(--radius);
    border-bottom-left-radius: var(--radius);
}

.comparison-table td:last-child {
    border-top-right-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
}

.rank-badge {
    width: 40px;
    height: 40px;
    background: var(--darker-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.provider-logo img {
    height: 40px;
    width: auto;
}

.rating {
    color: var(--warning);
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-tag {
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 8px;
    border-radius: 4px;
    color: var(--text-muted);
}

.price {
    font-size: 1.5rem;
    font-weight: 800;
}

.price span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Value Props / Why Details */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.feature-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

/* Footer */
footer {
    background: var(--darker-bg);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 60px;
}

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

.footer-col h4 {
    color: var(--text-main);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-col ul li a {
    color: var(--text-muted);
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.copyright {
    text-align: center;
    color: var(--text-muted);
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        right: 0px;
        height: 100vh;
        top: 70px;
        background-color: var(--darker-bg);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        z-index: 99;
        padding-top: 20px;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links.nav-active {
        transform: translateX(0%);
    }

    .nav-links a {
        color: var(--text-main);
        font-size: 1.2rem;
        margin: 20px 0;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
        font-size: 1.8rem;
        color: var(--text-main);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .comparison-table,
    .comparison-table tbody,
    .comparison-table tr,
    .comparison-table td {
        display: block;
        width: 100%;
    }

    .comparison-table thead {
        display: none;
    }

    .comparison-table tr {
        margin-bottom: 20px;
        background: var(--card-bg);
        border-radius: var(--radius);
        padding: 20px;
    }

    .comparison-table td {
        padding: 10px 0;
        text-align: center;
        border: none !important;
    }

    .provider-logo {
        justify-content: center;
        display: flex;
        margin-bottom: 10px;
    }

    .features-list {
        justify-content: center;
    }

    .rh-pricing {
        grid-template-columns: 1fr;
    }
}

/* Menu Toggle Button (Hidden on Desktop) */
.menu-toggle {
    display: none;
}

/* RockHoster Banner (Replaces Tailwind) */
.rockhoster-banner {
    background: #ffffff;
    color: #1e293b;
    /* slate-800 */
    border-radius: 1rem;
    /* rounded-2xl */
    padding: 2rem;
    /* p-8 */
    border: 1px solid #f1f5f9;
    /* slate-100 */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    /* shadow-xl */
    transition: all 0.3s ease;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    animation: slideIn 0.8s ease-out;
}

.rockhoster-banner:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    /* shadow-2xl */
    transform: translateY(-5px);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rh-badge {
    display: inline-block;
    background-color: #facc15;
    /* yellow-400 */
    color: #000;
    font-size: 0.75rem;
    /* text-xs */
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    /* rounded-full */
}

.rh-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.rh-logo {
    width: 4rem;
    height: 4rem;
    object-fit: contain;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    /* rounded-xl */
    padding: 0.5rem;
    background: white;
}

.rh-title {
    font-size: 1.5rem;
    /* text-2xl */
    font-weight: 800;
    /* extra bold */
    color: #1e293b;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.rh-subtitle {
    font-size: 0.75rem;
    color: #64748b;
    /* slate-500 */
    margin-bottom: 0.25rem;
}

.rh-rating {
    font-size: 0.875rem;
    /* text-sm */
    color: #eab308;
    /* yellow-500 */
    font-weight: 600;
    margin-bottom: 0.1rem;
}

.rh-guarantee {
    font-size: 0.75rem;
    color: #16a34a;
    /* green-600 */
    font-weight: 600;
}

.rh-description {
    font-size: 0.875rem;
    color: #475569;
    /* slate-600 */
    margin-top: 1.25rem;
    line-height: 1.625;
}

.rh-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: #334155;
    /* slate-700 */
}

.rh-pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    text-align: center;
}

.rh-plan {
    background-color: #f8fafc;
    /* slate-50 */
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid #e2e8f0;
}

.rh-plan.popular {
    background-color: #eff6ff;
    /* blue-50 */
    border: 2px solid #2563eb;
    /* blue-600 */
    position: relative;
    top: -10px;
    /* Pop out effect */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.rh-plan b {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    color: #1e293b;
}

.rh-plan.popular b {
    color: #1d4ed8;
    /* blue-700 */
}

.rh-plan p {
    font-size: 0.75rem;
    color: #64748b;
    margin: 0;
}

.rh-price {
    font-weight: 800;
    color: #16a34a;
    /* green-600 */
    font-size: 1rem;
    margin-top: 0.5rem !important;
}

.rh-pros {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: #475569;
}

.rh-pros p {
    margin-bottom: 0.25rem;
}

.rh-cta {
    display: block;
    margin-top: 2rem;
    background-color: #2563eb;
    /* blue-600 */
    color: white !important;
    padding: 0.75rem;
    border-radius: 0.75rem;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.rh-cta:hover {
    background-color: #1d4ed8;
    /* blue-700 */
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}