/* ===== MAIN.CSS - PIPSBULL FX ===== */
/* Version: 2.0 - Consolidated Styles */

/* ===== RESET & VARIABLES ===== */
:root {
    --primary: #d60000;
    --primary-dark: #b30000;
    --primary-light: #ff6b6b;
    --bg-dark: #060606;
    --bg-card: #0f1117;
    --bg-card-hover: #141a26;
    --text-primary: #fff;
    --text-secondary: #b0b7c4;
    --text-muted: #6e7a8a;
    --border-color: rgba(214, 0, 0, 0.15);
    --success: #00c48c;
    --warning: #ffa500;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== CINEMATIC BACKGROUND ===== */
.cinematic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(214, 0, 0, 0.03) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 80%, rgba(214, 0, 0, 0.05) 0%, transparent 40%),
        linear-gradient(135deg, #0a0a0a 0%, #060606 100%);
}

/* ===== LAYOUT ===== */
section {
    padding: 12vh 5vw;
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== TYPOGRAPHY ===== */
h1 {
    font-size: clamp(42px, 12vw, 110px);
    font-weight: 800;
    letter-spacing: -3px;
    line-height: 0.9;
}

h2 {
    font-size: clamp(28px, 8vw, 46px);
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
}

h2 span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

h2 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(214,0,0,0.2);
    z-index: -1;
}

p {
    max-width: 800px;
    font-size: clamp(15px, 4vw, 18px);
    color: var(--text-secondary);
    line-height: 1.7;
    text-align: center;
    margin: 0 auto;
}

.small {
    font-size: 14px;
    color: #888;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 30px;
    box-shadow: 0 20px 40px rgba(214,0,0,0.2);
    transition: all 0.3s ease;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 15px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px rgba(214,0,0,0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    box-shadow: none;
}

.btn-secondary:hover {
    background: var(--primary);
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0, 0, 1);
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* ===== NAVIGATION ===== */
.navbar {
    background: rgba(6, 6, 6, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo span {
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
    color: #fff;
}

.logo span span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.instagram-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(214,0,0,0.1);
    border: 1px solid rgba(214,0,0,0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    color: #fff !important;
    font-weight: 600;
}

.instagram-link i {
    color: var(--primary);
    font-size: 1.1rem;
}

.instagram-link:hover {
    background: rgba(214,0,0,0.2);
    transform: translateY(-2px);
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(180deg, rgba(6,6,6,0.8) 0%, var(--bg-dark) 100%);
    border-bottom: 1px solid var(--border-color);
    padding: 8vh 5vw;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(214,0,0,0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(214,0,0,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.page-header h1 {
    font-size: clamp(36px, 10vw, 72px);
    margin-bottom: 20px;
    position: relative;
}

.page-header h1 span {
    color: var(--primary);
}

.page-header p {
    font-size: clamp(16px, 4vw, 18px);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0a0a0a 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px -10px rgba(214,0,0,0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(214,0,0,0.1);
    border: 1px solid rgba(214,0,0,0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 20px;
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    background: rgba(214,0,0,0.2);
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
    text-align: left;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    text-align: left;
}

/* ===== MARKET PREVIEW SECTION ===== */
.market-preview {
    padding: 60px 5vw;
    background: linear-gradient(180deg, #0a0a0a 0%, var(--bg-dark) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.preview-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.title-wrapper .section-label {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.title-wrapper .section-title {
    font-size: clamp(24px, 7vw, 36px);
    font-weight: 700;
    color: #fff;
}

.title-wrapper .section-title span {
    color: var(--primary);
    margin-left: 8px;
}

.view-all-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(214,0,0,0.05);
    border: 1px solid rgba(214,0,0,0.2);
    border-radius: 100px;
    width: fit-content;
    transition: all 0.3s;
}

.view-all-link:hover {
    background: rgba(214,0,0,0.1);
    gap: 12px;
}

.view-all-link i {
    transition: transform 0.3s;
}

.view-all-link:hover i {
    transform: translateX(5px);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.preview-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.preview-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px -10px rgba(214,0,0,0.2);
}

.card-image-container {
    height: 160px;
    overflow: hidden;
    position: relative;
}

.card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.preview-card:hover .card-image-container img {
    transform: scale(1.05);
}

.card-content {
    padding: 20px;
}

.card-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(214,0,0,0.1);
    border-radius: 100px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    border: 1px solid rgba(214,0,0,0.2);
    margin-bottom: 12px;
}

.preview-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    display: flex;
    gap: 15px;
    color: var(--text-muted);
    font-size: 12px;
}

.card-meta i {
    margin-right: 4px;
    color: var(--primary);
}

.update-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 12px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.update-note i {
    color: var(--primary);
}

/* ===== SKELETON LOADING ===== */
.skeleton-card {
    pointer-events: none;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.skeleton-image {
    width: 100%;
    height: 160px;
    background: linear-gradient(90deg, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 20px 20px 0 0;
}

.skeleton-badge {
    width: 70px;
    height: 24px;
    background: linear-gradient(90deg, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 100px;
    margin: 20px 20px 10px;
}

.skeleton-title {
    height: 16px;
    background: linear-gradient(90deg, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 4px;
    margin: 0 20px 10px;
}

.skeleton-meta {
    width: 100px;
    height: 12px;
    background: linear-gradient(90deg, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 4px;
    margin: 15px 20px 20px;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.fallback-chart {
    width: 100%;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 100%);
    color: var(--primary);
}

.fallback-chart i {
    font-size: 42px;
    margin-bottom: 8px;
    filter: drop-shadow(0 0 20px rgba(214,0,0,0.3));
}

.fallback-chart span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(214,0,0,0.1);
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid rgba(214,0,0,0.2);
}

/* ===== PROFILE STYLES ===== */
.profile-avatar {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.profile-avatar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(214,0,0,0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 50%;
}

.profile-avatar:hover::after {
    opacity: 1;
}

.profile-avatar:hover img {
    transform: scale(1.1);
}

/* ===== ANIMATIONS ===== */
@keyframes logoFloat {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes elegantGlow {
    0% { filter: drop-shadow(0 0 10px rgba(214, 0, 0, 0.3)) drop-shadow(0 0 20px rgba(214, 0, 0, 0.1)); }
    50% { filter: drop-shadow(0 0 30px rgba(214, 0, 0, 0.7)) drop-shadow(0 0 60px rgba(214, 0, 0, 0.4)) drop-shadow(0 0 100px rgba(214, 0, 0, 0.2)); }
    100% { filter: drop-shadow(0 0 10px rgba(214, 0, 0, 0.3)) drop-shadow(0 0 20px rgba(214, 0, 0, 0.1)); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

/* ===== TOOLS SECTION ===== */
.tools-section {
    padding: 60px 5vw;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0a0a0a 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header .hero-tagline {
    display: inline-block;
    margin-bottom: 15px;
}

.section-description {
    color: var(--text-secondary);
    font-size: clamp(14px, 4vw, 16px);
    max-width: 600px;
    margin: 0 auto;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.tool-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 30px;
    transition: all 0.3s ease;
    text-align: left;
}

.tool-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: var(--bg-card-hover);
    box-shadow: 0 30px 60px -15px rgba(214,0,0,0.2);
}

.tool-icon {
    width: 64px;
    height: 64px;
    background: rgba(214,0,0,0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary);
    border: 1px solid rgba(214,0,0,0.2);
    margin-bottom: 20px;
    transition: all 0.3s;
}

.tool-card:hover .tool-icon {
    background: rgba(214,0,0,0.2);
    transform: scale(1.1) rotate(5deg);
}

.tool-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.tool-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: left;
}

.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.tool-features span {
    color: var(--text-muted);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.03);
    padding: 5px 12px;
    border-radius: 100px;
}

.tool-features i {
    color: var(--primary);
    font-size: 10px;
}

.tool-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 100px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.tool-link i {
    transition: transform 0.3s;
}

.tool-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(214,0,0,0.3);
}

.tool-link:hover i {
    transform: translateX(5px);
}

/* ===== MEMBERSHIP SECTION ===== */
.membership-section {
    padding: 80px 5vw;
    background: linear-gradient(180deg, #0a0a0a 0%, var(--bg-dark) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.membership-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 70% 30%, rgba(214,0,0,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.tier-card {
    background: rgba(15,17,23,0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 35px 25px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.tier-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 30px 60px -15px rgba(214,0,0,0.3);
}

.tier-card.popular {
    border: 2px solid var(--primary);
    position: relative;
}

.tier-card.popular::before {
    content: '⭐ MOST POPULAR';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary);
    color: white;
    padding: 8px 40px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 5px 15px rgba(214,0,0,0.3);
}

.tier-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.tier-icon {
    width: 70px;
    height: 70px;
    background: rgba(214,0,0,0.1);
    border: 1px solid rgba(214,0,0,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: var(--primary);
    transition: all 0.3s;
}

.tier-card:hover .tier-icon {
    background: rgba(214,0,0,0.2);
    transform: scale(1.1);
}

.tier-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

.tier-subtitle {
    font-size: 13px;
    color: var(--primary-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tier-price {
    text-align: center;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(0,0,0,0.2);
    border-radius: 20px;
}

.price-amount {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.price-amount small {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
}

.price-period {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 5px;
}

.tier-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-icon-small {
    width: 22px;
    height: 22px;
    background: rgba(214,0,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 11px;
    flex-shrink: 0;
}

.feature-text {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
}

.feature-text strong {
    color: #fff;
}

.feature-note {
    font-size: 11px;
    color: var(--text-muted);
    margin-left: auto;
}

.tier-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 100px;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
    margin-top: 20px;
}

.tier-btn.public {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(214,0,0,0.3);
}

.tier-btn.public:hover {
    background: rgba(214,0,0,0.1);
    border-color: var(--primary);
}

.tier-btn i {
    transition: transform 0.3s;
}

.tier-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(214,0,0,0.4);
}

.tier-btn:hover i {
    transform: translateX(5px);
}

.tier-note {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(0,0,0,0.2);
    border-radius: 16px;
    border: 1px solid rgba(214,0,0,0.1);
}

.tier-note p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

.tier-note i {
    color: var(--primary);
    margin-right: 5px;
}

/* ===== SOCIAL SECTION ===== */
.social-section {
    padding: 60px 5vw;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0a0a0a 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.social-card {
    background: rgba(20,20,20,0.7);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.social-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    background: rgba(30,30,30,0.8);
    box-shadow: 0 20px 40px -10px rgba(214,0,0,0.2);
}

.social-icon {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary) !important;
    transition: transform 0.3s;
}

.social-card:hover .social-icon {
    transform: scale(1.1);
}

.whop-icon-custom {
    width: 42px;
    height: 42px;
    margin: 0 auto 15px;
    transition: transform 0.3s;
}

.whop-icon-custom img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(16%) sepia(89%) saturate(6381%) hue-rotate(358deg) brightness(95%) contrast(117%);
}

.social-card:hover .whop-icon-custom {
    transform: scale(1.1);
}

.social-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.social-card p {
    font-size: 12px;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    padding: 8px 16px;
    border: 1px solid rgba(214,0,0,0.3);
    border-radius: 100px;
    background: rgba(214,0,0,0.05);
    width: 100%;
    transition: all 0.3s;
}

.social-link:hover {
    background: rgba(214,0,0,0.1);
    border-color: var(--primary);
    gap: 12px;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 60px 5vw;
    background: linear-gradient(180deg, #0a0a0a 0%, var(--bg-dark) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.faq-categories {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-category {
    background: rgba(15,17,23,0.5);
    border-radius: 24px;
    padding: 30px 25px;
    border: 1px solid var(--border-color);
}

.category-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(214,0,0,0.2);
    padding-bottom: 15px;
}

.category-title i {
    font-size: 24px;
}

.faq-items {
    display: flex;
    flex-direction: column;
}

.faq-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    cursor: pointer;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    cursor: pointer;
    position: relative;
    padding-right: 40px;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    line-height: 1.5;
    transition: color 0.3s;
}

.faq-item:hover h4 {
    color: var(--primary-light);
}

.faq-item h4::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 24px;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-item.open h4::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-item p {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 15px;
    color: #ccc;
    line-height: 1.8;
    text-align: left;
    margin: 0;
}

.faq-item.open p {
    max-height: 500px;
    opacity: 1;
    margin-top: 18px;
}

/* ===== FINAL CTA ===== */
.final-cta {
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 15vh 5vw;
    background: 
        radial-gradient(ellipse at 50% 120%, rgba(214,0,0,0.15) 0%, transparent 70%),
        linear-gradient(to bottom, rgba(6,6,6,0.9), var(--bg-dark));
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: clamp(32px, 8vw, 56px);
}

.final-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.final-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    border-radius: 100px;
    transition: all 0.3s;
    font-size: 15px;
    letter-spacing: 1px;
    min-width: 220px;
}

.final-buttons .tg {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 15px 30px rgba(214,0,0,0.2);
}

.final-buttons .whop {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(214,0,0,0.3);
}

.final-buttons .whop img {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(16%) sepia(89%) saturate(6381%) hue-rotate(358deg) brightness(95%) contrast(117%);
}

.final-buttons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(214,0,0,0.3);
}

/* ===== STICKY NAV ===== */
.sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    z-index: 99;
    background: rgba(11,11,11,0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-color);
    padding: 10px;
    gap: 10px;
}

.sticky a {
    flex: 1;
    padding: 14px 10px;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    border-radius: 100px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.sticky .tg {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.sticky .whop {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(214,0,0,0.2);
}

.sticky .whop img {
    width: 16px;
    height: 16px;
    filter: brightness(0) saturate(100%) invert(16%) sepia(89%) saturate(6381%) hue-rotate(358deg) brightness(95%) contrast(117%);
}

/* ===== MODAL STYLES ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: linear-gradient(165deg, #0f1117 0%, #1a1f2a 100%);
    border: 1px solid rgba(214, 0, 0, 0.3);
    border-radius: 24px;
    width: 100%;
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(30px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(214, 0, 0, 0.2);
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #1a1a1a;
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-container::-webkit-scrollbar {
    width: 6px;
}

.modal-container::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 0 24px 24px 0;
}

.modal-container::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

.modal-container::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

.modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(214, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background: linear-gradient(165deg, #0f1117 0%, #1a1f2a 100%);
    z-index: 10;
    border-radius: 24px 24px 0 0;
}

.modal-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-header h3 i {
    color: var(--primary);
    font-size: 24px;
    filter: drop-shadow(0 0 10px rgba(214,0,0,0.3));
}

.modal-close {
    width: 40px;
    height: 40px;
    background: rgba(214, 0, 0, 0.1);
    border: 1px solid rgba(214, 0, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 18px;
}

.modal-close:hover {
    background: var(--primary);
    color: #fff;
    transform: rotate(90deg) scale(1.1);
    border-color: transparent;
}

.modal-content {
    padding: 30px;
}

.modal-section {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.modal-section h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-section h4 i {
    color: var(--primary);
    font-size: 18px;
    width: 24px;
}

.modal-section p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
    text-align: left;
    padding-left: 34px;
}

.modal-footer {
    padding: 20px 30px 30px;
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(214, 0, 0, 0.1);
}

.modal-btn {
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    border: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 200px;
    position: relative;
    overflow: hidden;
}

.modal-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.modal-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(214, 0, 0, 0.4);
}

.modal-btn:hover::before {
    width: 200%;
    height: 200%;
}

.modal-btn:active {
    transform: translateY(0);
}

/* ===== WELCOME MODAL SPECIFIC STYLES ===== */
#welcomeModal .modal-container {
    border: 2px solid rgba(214, 0, 0, 0.3);
    box-shadow: 0 30px 80px rgba(214, 0, 0, 0.2);
}

#welcomeModal .modal-header {
    border-bottom: 2px solid rgba(214, 0, 0, 0.3);
}

#welcomeModal .welcome-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#welcomeModal .welcome-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(214, 0, 0, 0.2);
}

#welcomeModal input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    border: 2px solid var(--primary);
    border-radius: 4px;
    background: transparent;
    accent-color: var(--primary);
}

#welcomeModal input[type="checkbox"]:checked {
    background: var(--primary);
}

#confirmWelcomeBtn {
    transition: all 0.3s ease;
    font-size: 16px;
    padding: 16px 32px;
}

#confirmWelcomeBtn:not(:disabled) {
    opacity: 1 !important;
    cursor: pointer !important;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 10px 30px rgba(214, 0, 0, 0.3);
}

#confirmWelcomeBtn:not(:disabled):hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(214, 0, 0, 0.4);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .social-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tiers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 15px 5%;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .preview-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .tiers-grid {
        grid-template-columns: 1fr;
    }
    
    .preview-grid {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 20px auto 0;
    }
    
    .btn {
        width: 100%;
        margin-top: 0;
    }
    
    .final-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .final-buttons a {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 400px) {
    .sticky a {
        font-size: 11px;
        padding: 10px 5px;
    }
    
    .sticky i, .sticky img {
        margin-right: 3px;
    }
}

/* Touch-friendly adjustments */
@media (hover: none) and (pointer: coarse) {
    .feature-card:hover,
    .tool-card:hover,
    .tier-card:hover,
    .social-card:hover,
    .btn:hover {
        transform: none;
    }
}

/* ===== FOOTER SECTION ===== */
.footer-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #060606 100%);
    border-top: 1px solid rgba(214, 0, 0, 0.2);
    padding: 60px 5vw 30px;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--primary-light), var(--primary), transparent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-logo span {
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 1px;
    color: #fff;
}

.footer-logo span span {
    color: var(--primary);
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    text-align: left;
    max-width: 350px;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-links a i {
    color: var(--primary);
    font-size: 12px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(214,0,0,0.1);
    border: 1px solid rgba(214,0,0,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-5px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 14px;
    transition: all 0.3s;
}

.footer-contact-item i {
    color: var(--primary);
    width: 20px;
}

.footer-contact-item:hover {
    color: #fff;
    transform: translateX(5px);
}

/* Risk Warning */
.risk-warning {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(214, 0, 0, 0.2);
    border-radius: 16px;
    padding: 25px;
    margin: 30px 0;
    position: relative;
    backdrop-filter: blur(5px);
}

.risk-warning::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--primary-light));
}

.risk-warning h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.risk-warning p {
    font-size: 13px;
    line-height: 1.7;
    color: #aaa;
    margin: 0;
    text-align: left;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 13px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--primary);
}

/* Responsive Footer */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-desc {
        text-align: center;
        margin: 0 auto;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-title {
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

@media (max-width: 1000px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }
}