:root {
    --bg-dark: #0f1423;
    --bg-ocean: linear-gradient(180deg, #101c36 0%, #0d162a 50%, #0b101e 100%);
    --bg-light: #f5f7f9;
    --primary: #ff4c61;
    --text-main: #ffffff;
    --text-muted: #a0a4b8;
    --text-dark: #333333;
    --accent: #00e5cc;
    --border-color: rgba(255, 255, 255, 0.1);
    --table-bg: #1c2235;
    --table-bg-alt: #161b2c;
    --table-highlight: #159b9b;
    /* Teal */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.mt-4 {
    margin-top: 40px;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s;
    box-shadow: 0 4px 15px rgba(255, 76, 97, 0.4);
}

.btn-primary:hover {
    background-color: #ff334b;
    transform: translateY(-2px);
}

.btn-primary.large {
    padding: 14px 40px;
    font-size: 18px;
    border-radius: 30px;
    box-shadow: 0 6px 20px rgba(255, 76, 97, 0.5);
    margin-bottom: 50px;
}

/* Header */
.top-nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    padding: 20px 40px;
    background: transparent;
    position: absolute;
    width: 100%;
    z-index: 10;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: bold;
    justify-self: start;
}

.upgrade-notice {
    text-align: center;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.upgrade-notice h1 {
    font-size: 30px;
    margin-bottom: 5px;
    font-weight: 800;
}

.upgrade-notice p {
    font-size: 13px;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.countdown {
    background: #1e2439;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    justify-self: end;
}

.countdown .time-label {
    background: #272f48;
    color: var(--text-muted);
    font-size: 10px;
    text-align: center;
    padding: 4px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown .timer {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    gap: 15px;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-block .num {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.2;
}

.time-block .label {
    font-size: 10px;
    color: var(--text-muted);
}

.colon {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    opacity: 0.5;
}

/* Hero Section */
.hero-section {
    background: var(--bg-ocean);
    position: relative;
    padding-top: 150px;
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.hero-illustration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
    z-index: -1;
    display: flex;
    justify-content: center;
}

/* CSS Art for background (abstract whale & boat representation) */
.whale-shape {
    position: absolute;
    top: 150px;
    width: 600px;
    height: 400px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><path fill="%23246eb9" opacity="0.6" d="M200 50 C 300 50, 350 200, 350 250 C 350 300, 50 300, 50 250 C 50 200, 100 50, 200 50 Z"/><path fill="%233a8bdb" opacity="0.8" d="M200 60 C 280 60, 320 200, 320 250 C 320 300, 80 300, 80 250 C 80 200, 120 60, 200 60 Z"/></svg>') no-repeat center center;
    background-size: contain;
    z-index: 1;
}

.boat {
    position: absolute;
    top: 120px;
    width: 100px;
    height: 40px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 40"><path fill="%23e74c3c" d="M10 30 Q 50 40 90 30 L 80 10 L 20 10 Z"/><circle cx="30" cy="5" r="5" fill="%232ecc71"/><circle cx="50" cy="5" r="5" fill="%23f1c40f"/><circle cx="70" cy="5" r="5" fill="%23e74c3c"/></svg>') no-repeat center center;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    width: 100%;
    z-index: 5;
    position: relative;
    margin-top: 180px;
    /* offset for whale */
}

.main-title {
    font-size: 80px;
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.subtitle {
    font-size: 22px;
    color: #e0e0e0;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Comparison Table */
.comparison-container {
    background-color: var(--table-bg);
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
    max-width: 850px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table tbody tr:nth-child(even) {
    background-color: var(--table-bg-alt);
}

.comparison-table th {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    padding-top: 24px;
    padding-bottom: 24px;
}

.comparison-table td.row-title {
    text-align: left;
    color: var(--text-muted);
    font-size: 13px;
    padding-left: 30px;
}

.comparison-table th.highlight,
.comparison-table td.highlight {
    background-color: var(--table-highlight);
    color: white;
    font-weight: bold;
}

.comparison-table th.highlight {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.table-logo {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
}

.dot.red {
    background-color: #e74c3c;
}

.dot.blue {
    background-color: #3498db;
}

.dot.yellow {
    background-color: #f1c40f;
}

.dot.green {
    background-color: #2ecc71;
}

.check {
    color: #2ecc71;
    font-weight: bold;
}

.cross {
    color: #e74c3c;
    font-weight: bold;
}

/* Awards Section */
.awards {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.award {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 250px;
}

.award-content p {
    font-size: 12px;
    font-style: italic;
    color: #d0d0d0;
    margin-bottom: 4px;
}

.award-content span {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: bold;
    text-transform: uppercase;
}

/* Features Section */
.features-section {
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding: 80px 20px;
    text-align: center;
}

.section-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    border-top: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
}

.feature-card {
    padding: 50px 30px;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    background-color: #eaeaea;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Add CSS shapes for icons as placeholders */
.icon-netflix::after {
    content: "🎬";
    font-size: 40px;
    line-height: 1;
}

.icon-whitelister::after {
    content: "🛡️";
    font-size: 40px;
    line-height: 1;
}

.icon-cleanweb::after {
    content: "🚫";
    font-size: 40px;
    line-height: 1;
}

.icon-nologs::after {
    content: "📋";
    font-size: 40px;
    line-height: 1;
}

.icon-encryption::after {
    content: "🔑";
    font-size: 40px;
    line-height: 1;
}

.icon-killswitch::after {
    content: "📴";
    font-size: 40px;
    line-height: 1;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* Footer Section */
footer {
    background-color: #0b101e;
    padding: 60px 20px 40px;
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: var(--text-muted);
    font-weight: bold;
    margin-bottom: 30px;
}

.footer-links {
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--text-muted);
}

.footer-links a {
    margin: 0 15px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-links span {
    opacity: 0.3;
}

.social-links {
    margin-bottom: 30px;
}

.social-links a {
    margin: 0 10px;
    color: white;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 1;
}

.company-info {
    font-size: 11px;
    color: #555;
    margin-bottom: 10px;
}

.copyright {
    font-size: 12px;
    color: #555;
}

/* Decorative elements (Seabed) */
.seabed,
.seabed-footer {
    position: absolute;
    bottom: 0;
    width: 200px;
    height: 150px;
    background-size: cover;
    z-index: 0;
    opacity: 0.8;
}

.seabed.left,
.seabed-footer.left {
    left: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%230f1b32" d="M0 100 L 0 50 Q 20 40 40 70 T 100 60 L 100 100 Z"/><circle cx="30" cy="80" r="10" fill="%231a3059"/></svg>') no-repeat bottom left;
}

.seabed.right,
.seabed-footer.right {
    right: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%230f1b32" d="M100 100 L 100 30 Q 70 60 50 40 T 0 60 L 0 100 Z"/><circle cx="80" cy="70" r="15" fill="%231a3059"/></svg>') no-repeat bottom right;
}

/* Responsive Design */
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison-container {
        overflow-x: auto;
    }

    .main-title {
        font-size: 50px;
    }

    .top-nav {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 20px;
    }

    .logo,
    .countdown {
        justify-self: center;
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .top-nav {
        flex-direction: column;
        gap: 15px;
    }

    .countdown {
        display: none;
    }

    .awards {
        flex-direction: column;
        align-items: center;
    }
}