/* Global Styles */
:root {
    --primary-green: #00ff41;
    --dark-green: #008f11;
    --accent-gold: #ffd700;
    --accent-orange: #ff8c00;
    --bg-black: #050505;
    --bg-card: #111;
    --text-white: #ffffff;
    --font-primary: 'Outfit', sans-serif;
    --font-heading: 'Anton', sans-serif;
    /* For the big impact text */
    --font-condensed: 'Teko', sans-serif;
    /* For the "Server Thailand" look */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: var(--font-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
    padding-bottom: 50px;
}

/* Header */
.header {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
    z-index: 100;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: 800;
    gap: 10px;
}

.thumbs-up {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.brand-name {
    color: var(--text-white);
    font-family: var(--font-heading);
    letter-spacing: 2px;
}

.brand-name .highlight {
    color: var(--primary-green);
}

/* Main Content */
.main-content {
    width: 100%;
    max-width: 600px;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 10;
}

/* Hero Card - Replicating the graphic */
.hero-card {
    background: radial-gradient(circle at center, #1a2c20 0%, #000000 100%);
    border: 2px solid #333;
    border-radius: 12px;
    padding: 5px;
    width: 100%;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    position: relative;
}

.hero-visual {
    background-image: url('https://images.unsplash.com/photo-1518609878373-06d740f60d8b?q=80&w=2070&auto=format&fit=crop');
    /* Jungle/Adventure texture */
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 30px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    position: relative;
    border-bottom: 4px solid var(--primary-green);
}

/* Semi-transparent overlay to darken img */
.hero-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8));
    z-index: 0;
}

.hero-text-content,
.hero-badges {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Badges */
.hero-badges {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    margin-bottom: 2rem;
}

.badge {
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.google-badge .g-icon {
    font-weight: bold;
    color: #4285F4;
    font-family: sans-serif;
}

/* Typography styles to match the "Image" feel */
.sub-headline {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    line-height: 1.1;
    color: white;
    text-transform: uppercase;
    text-shadow: 2px 2px 0px #000;
    margin-bottom: 5px;
}

.main-headline {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 8vw, 3.5rem);
    background: linear-gradient(to bottom, #ffeebb, #ffaa00, #ff4500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    filter: drop-shadow(0 2px 0px rgba(0, 0, 0, 1));
    line-height: 1;
    margin-bottom: 15px;
    width: 100%;
}

.promo-box {
    background: #006400;
    background: linear-gradient(90deg, #004d00, #00b300, #004d00);
    width: 100%;
    padding: 8px;
    border: 2px solid #00ff00;
    border-radius: 4px;
    color: white;
    font-weight: 800;
    font-family: var(--font-condensed);
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 1px 1px 0 #000;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

.server-text {
    font-family: var(--font-condensed);
    font-size: clamp(3rem, 10vw, 5rem);
    color: #ffcc00;
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: 2px;
    text-shadow:
        0px 0px 0 #b8860b,
        -1px -1px 0 #b8860b,
        1px -1px 0 #b8860b,
        -1px 1px 0 #b8860b,
        1px 1px 0 #b8860b,
        4px 4px 5px black;
    margin-bottom: 15px;
}

.feature-pills {
    background: #006400;
    padding: 8px 15px;
    border-radius: 4px;
    width: 100%;
    margin-bottom: 10px;
    font-family: var(--font-condensed);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid #00ff00;
}

.action-buttons-small {
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: center;
    margin-bottom: 20px;
}

.btn-small {
    background: #004d00;
    flex: 1;
    padding: 8px;
    border: 1px solid #00ff00;
    border-radius: 4px;
    font-family: var(--font-condensed);
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    color: white;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.impact-text {
    display: flex;
    flex-direction: column;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 9vw, 4rem);
    line-height: 0.9;
    text-transform: uppercase;
    background: linear-gradient(to bottom, #ffcc00, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(2px 2px 0px #000);
    margin-bottom: 10px;
}

/* CTA Button Large */
.cta-button-large {
    background: linear-gradient(to bottom, #00ff41, #008f11);
    color: white;
    width: 100%;
    text-align: center;
    padding: 20px;
    font-family: var(--font-heading);
    font-size: 2rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s, filter 0.2s;
    border-top: 1px solid #7fff7f;
}

.cta-button-large:hover {
    transform: scale(1.02);
    filter: brightness(1.2);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
}

.cta-button-large:active {
    transform: scale(0.98);
}

/* SEO Content */
.seo-content {
    text-align: center;
    max-width: 600px;
    margin-top: 30px;
}

.seo-content h2 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.5;
}

/* Footer */
.footer {
    margin-top: 50px;
    font-size: 0.9rem;
    color: #888;
}

.green-text {
    color: var(--primary-green);
    font-weight: bold;
}

/* Background Effects */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-green);
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-orange);
    bottom: -100px;
    right: -100px;
    opacity: 0.2;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.cta-button-large {
    animation: pulse 2s infinite ease-in-out;
    position: relative;
    overflow: hidden;
}

/* Ripple Effect */
.cta-button-large span,
.btn-small span {
    position: absolute;
    background: #fff;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border-radius: 50%;
    animation: animate 1s linear infinite;
}

@keyframes animate {
    0% {
        width: 0px;
        height: 0px;
        opacity: 0.5;
    }

    100% {
        width: 500px;
        height: 500px;
        opacity: 0;
    }
}