:root {
    /* Color Palette - Dark Mode */
    --bg-color: #FFFFFF;
    /* Changed to White for Outer Background */
    /* Black Background */
    --surface-color: #121212;
    /* Dark Surface */
    --surface-hover: #1E1E1E;
    /* Slightly Lighter Surface */
    --text-primary: #FFFFFF;
    /* White text */
    --text-secondary: #E0E0E0;
    /* Light Grey text */
    --accent-gold: #FFD700;
    /* Bright Gold */
    --accent-gold-hover: #FFC000;
    --accent-green: #00FF99;
    /* Neon Green for dark mode */
    --border-color: #333333;

    /* Spacing & Layout */
    --container-width: 480px;
    /* Mobile focused max-width */
    --radius-lg: 16px;
    --radius-md: 12px;
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', 'Prompt', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.page-wrapper {
    width: 100%;
    max-width: var(--container-width);
    background-color: #000000;
    /* Force Black Content Background */
    min-height: 100vh;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
    /* Adjusted shadow for white bg */
    /* Green glow instead of black shadow */
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

/* Header Section */
.profile-header {
    text-align: center;
    padding: var(--spacing-lg) var(--spacing-md);
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
    border-bottom: 1px solid var(--border-color);
}

.profile-image-container {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto var(--spacing-sm);
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.verified-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: #fff;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.profile-name {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    background: linear-gradient(90deg, #FFFFFF, var(--accent-green));
    /* Adjusted gradient for dark mode */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.profile-role {
    color: var(--accent-gold);
    font-size: 1.15rem;
    /* Increased from 0.9rem */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-xs);
}

.profile-bio {
    color: var(--text-secondary);
    font-size: 1.25rem;
    /* Increased from 1rem */
    max-width: 95%;
    /* Slightly wider to fit larger text */
    margin: 0 auto;
    line-height: 1.5;
}

/* Content Area */
.content-area {
    flex: 1;
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.value-prop {
    text-align: center;
    padding: 12px 20px;
    border: 1px solid var(--accent-green);
    border-radius: 50px;
    /* Pill shape */
    background: rgba(0, 168, 107, 0.05);
    /* Light Jade tint */
    align-self: center;
}

.value-prop p {
    color: var(--accent-green);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Product Images */
.product-images {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.content-image {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    display: block;
    border: 2px solid #FFFFFF;
    /* Added 2px White Border */
}

/* Buttons */
.links-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    align-items: center;
    /* Center the image button */
}

/* Pulse Animation */
@keyframes greenPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 153, 0.9);
    }

    70% {
        box-shadow: 0 0 25px 15px rgba(0, 255, 153, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 153, 0);
    }
}

.image-button-link {
    display: block;
    width: 100%;
    max-width: 100%;
    transition: transform 0.2s ease;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
    padding: 0 !important;
    margin: 0 !important;
    /* Fix for mobile shaking */
    -webkit-tap-highlight-color: transparent;
    transform: translateZ(0);
    line-height: 0 !important;
    /* Remove line-height gap */
}

.image-button-link:hover {
    transform: scale(1.02) translateZ(0);
    background: transparent !important;
}

.cta-image-button {
    width: 100%;
    height: auto;
    display: block;
    /* Ensures no bottom gap */
    border-radius: var(--radius-md);
    background: transparent !important;
    border: none !important;
    outline: none !important;
    /* Removed box-shadow: none !important to allow animation */
    padding: 0 !important;
    margin: 0 !important;
    /* Green Blinking Shadow */
    animation: greenPulse 1.5s infinite;
    /* Hardware Acceleration Fixes */
    will-change: transform, box-shadow;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.cta-button .icon {
    font-size: 1.2rem;
    margin-right: 12px;
}

.cta-button .text {
    flex: 1;
    font-weight: 500;
    font-size: 1rem;
}

.cta-button .arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.cta-button:hover .arrow {
    opacity: 1;
    transform: translateX(0);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 168, 107, 0.15);
}

/* Primary Button (Gradient Green) */
.cta-button.primary {
    background: linear-gradient(135deg, var(--accent-green) 0%, #008f5a 100%);
    color: #fff;
    font-weight: 600;
}

/* 3D Gold Border Style */
.cta-button.gold-3d {
    background: #00FF99;
    border: 2px solid #D4AF37;
    color: #4A3C05;
    /* Adjusted to darker brown/gold for better contrast on green */
    /* Dark Gold Text */
    box-shadow:
        0 4px 0 #B88A00,
        /* 3D Depth */
        0 8px 10px rgba(0, 0, 0, 0.1);
    /* Soft Drop Shadow */
    transform: translateY(0);
    transition: all 0.1s ease;
    font-size: 1.1rem;
    font-weight: 700;
}

.cta-button.gold-3d .icon {
    font-size: 1.4rem;
}

.cta-button.gold-3d:hover {
    filter: brightness(105%);
    transform: translateY(2px);
    box-shadow:
        0 2px 0 #B88A00,
        0 4px 5px rgba(0, 0, 0, 0.1);
}

.cta-button.gold-3d:active {
    transform: translateY(4px);
    box-shadow:
        0 0 0 #B88A00,
        inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

.cta-button.primary:hover {
    filter: brightness(110%);
}

/* Secondary Button (Gold/White) */
.cta-button.secondary {
    background-color: #fff;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.cta-button.secondary:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

/* Outline Button */
.cta-button.outline {
    background-color: transparent;
    color: var(--text-secondary);
    border: 1px solid transparent;
}

.cta-button.outline:hover {
    color: var(--text-primary);
    background-color: rgba(0, 0, 0, 0.02);
}

/* Secondary Line Pill Button */
/* Secondary Line Pill Button */
.line-pill-button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #FFFFFF;
    border-radius: 50px;
    padding: 16px 20px;
    text-decoration: none;
    margin-top: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    max-width: 100%;
    position: relative;
    border: 5px solid #006400;
    gap: 12px;
    box-sizing: border-box;
    transform: scale(1.05);
    /* Maintain scale */

    /* Responsive Left Padding */
    padding-left: clamp(20px, 8vw, 35px);
}

.line-pill-button:hover {
    transform: scale(1.07) translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.line-pill-button .line-icon {
    /* Responsive Icon Size */
    width: clamp(45px, 13vw, 61px);
    height: clamp(45px, 13vw, 61px);

    background-color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.line-pill-button .line-icon .icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.line-pill-button .line-text {
    color: #1A3C34;

    /* Responsive Font Size */
    font-size: clamp(1.2rem, 5.4vw, 1.48rem);

    font-weight: 700;
    white-space: nowrap;
    /* Prevent wrapping */
}

/* Blinking Dot Style */
.blinking-dot {
    width: 12px;
    height: 12px;
    background-color: #00FF00;
    border-radius: 50%;
    position: absolute;

    /* Adjusted position: Scaling with width but safer margin */
    right: 15%;

    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 10px #00FF00;
    animation: dotBlink 1s infinite;
}

@keyframes dotBlink {
    0% {
        opacity: 1;
        box-shadow: 0 0 5px #00FF00;
    }

    50% {
        opacity: 0.4;
        box-shadow: 0 0 15px #00FF00;
    }

    100% {
        opacity: 1;
        box-shadow: 0 0 5px #00FF00;
    }
}

/* Social Proof */
.social-proof {
    margin-top: var(--spacing-lg);
    text-align: center;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.social-proof h2 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: #fff;
}

.reviews-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.review-card {
    background: #1E1E1E;
    /* Dark Card Background */
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: left;
    font-size: 0.95rem;
    border-left: 4px solid var(--accent-green);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #333;
    /* Dark Border */
    color: #E0E0E0;
    /* Light text */
}

.review-card .stars {
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--accent-gold);
}

.review-card p {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.5;
}

.review-card .author {
    display: block;
    margin-top: 12px;
    color: var(--accent-green);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Footer */
.site-footer {
    padding: var(--spacing-lg) var(--spacing-md);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.75rem;
    margin-top: auto;
    border-top: 1px solid var(--border-color);
}

.footer-links {
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
    gap: 8px;
    align-items: center;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-links .divider {
    color: #333;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-header,
.value-prop,
.links-container,
.social-proof {
    animation: fadeIn 0.6s ease-out forwards;
}

.links-container {
    animation-delay: 0.2s;
    opacity: 0;
}

.social-proof {
    animation-delay: 0.4s;
    opacity: 0;
}