/* ============================================
   Academy Trading House - Custom Styles
   Color Scheme: Gold (#FFD700) & Black (#1a1a1a)
   ============================================ */

:root {
    --primary-gold: #FFD700;
    --dark-gold: #DAA520;
    --light-gold: #FFF4C4;
    --primary-black: #1a1a1a;
    --secondary-black: #2d2d2d;
    --dark-bg: #0d0d0d;
    --text-gray: #b0b0b0;
    --text-light: #e0e0e0;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-black);
    color: var(--text-light);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
}

.text-gold {
    color: var(--primary-gold) !important;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-black);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gold);
}

/* ============================================
   Navbar
   ============================================ */
.navbar {
    padding: 1.2rem 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(255, 215, 0, 0.1);
    padding: 0.8rem 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.brand-text {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: normal;
}

.nav-link {
    /* color: var(--text-light) !important; */
    font-weight: normal;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--primary-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* ============================================
   Buttons
   ============================================ */
.btn-gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--primary-black);
    font-weight: 500;
    padding: 0.8rem 2rem !important;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    color: var(--primary-black);
}

.btn-outline-gold {
    background: transparent;
    color: var(--primary-gold);
    font-weight: 700;
    padding: 0.8rem 2rem;
    border: 2px solid var(--primary-gold);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: var(--primary-gold);
    color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Mobile Navbar Fix */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(13, 13, 13, 0.98);
        margin: 1rem -0.5rem 0 -0.5rem;
        padding: 1.5rem;
        border-radius: 12px;
        border: 1px solid rgba(255, 215, 0, 0.2);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .navbar-nav {
        gap: 0.8rem;
    }

    .navbar-nav .nav-link {
        font-weight: 500;
        color: rgba(255, 255, 255, 0.9);
        padding: 0.5rem 0;
    }

    .navbar-nav .nav-link:hover {
        color: var(--primary-gold);
        padding-left: 0.5rem;
    }

    .navbar-nav .btn-gold {
        margin-top: 0.5rem;
        text-align: center;
    }
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    position: relative;
    background:
        radial-gradient(ellipse 80% 100% at 50% 0%, transparent 40%, rgba(0, 0, 0, 0.8) 100%),
        linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 30%, #0d0d0d 70%, #0a0a0a 100%);
    /* overflow: hidden; */
    z-index: 5;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 50% 40% at 50% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse 100% 100% at 50% 50%, rgba(10, 10, 10, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,215,0,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.hero-content {
    position: relative;
    padding-top: 180px;
    padding-bottom: 100px;
    z-index: 2;
}

.hero-title {
    font-size: 3.7rem;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 1.8rem;
    /* margin-top: 180px; */
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.hero-title .text-gold {
    background: linear-gradient(135deg, #fee518 0%, #F59E0B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    display: block;
}

.hero-subtitle {
    font-size: 1rem;
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle strong {
    color: #ffffff;
    font-weight: 600;
}

/* Hero Video Player Styling */
.hero-video {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 10;
}

.video-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.7), 0 0 60px rgba(217, 119, 6, 0.15);
    border: 2px solid rgba(217, 119, 6, 0.6);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #000;
}

.video-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 90px rgba(217, 119, 6, 0.3);
}

.video-container img {
    width: 100%;
    display: block;
    border-radius: 16px;
    position: relative;
    z-index: 1;
}

.video-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

/* Large Center Play Button */
.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FDB913 0%, #F59E0B 100%);
    border: none;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(253, 185, 19, 0.5);
}

.video-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(253, 185, 19, 0.7);
}

.video-play-btn svg {
    width: 32px;
    height: 32px;
    margin-left: 4px;
}

/* Small Bottom Left Caption */
.video-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
}

.video-caption-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FDB913 0%, #F59E0B 100%);
    border: none;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.video-caption-btn svg {
    margin-left: 2px;
}

.video-caption span {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
}

/* CTA Buttons */
.hero-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary-cta {
    background: linear-gradient(135deg, #FDB913 0%, #F59E0B 100%);
    color: #000;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(253, 185, 19, 0.4);
}

.btn-primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(253, 185, 19, 0.6);
    color: #000;
}

.btn-secondary-cta {
    background: transparent;
    color: #FDB913;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid #FDB913;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-secondary-cta:hover {
    background: rgba(253, 185, 19, 0.1);
    color: #FDB913;
    transform: translateY(-2px);
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.mockup-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.mockup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(13, 13, 13, 0.3) 100%);
    pointer-events: none;
}



.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator a {
    color: var(--primary-gold);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* ============================================
   Features Section
   ============================================ */
.features-section {
    background: #0d0d0d;
    position: relative;
    z-index: 1;
    padding: 6rem 0;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
    backdrop-filter: blur(15px);
    pointer-events: none;
    z-index: 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.feature-card {
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.4) 0%, rgba(26, 26, 26, 0.6) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--primary-black);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.feature-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.feature-list li i {
    color: var(--primary-gold);
    margin-right: 0.5rem;
}

/* ============================================
   About Section
   ============================================ */
.about-section {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    padding: 6rem 0;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(26, 26, 26, 0.5) 100%);
}

.about-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-gold);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    text-align: center;
}

.about-badge h3 {
    font-size: 3rem;
    color: var(--primary-gold);
    font-weight: 900;
}

.about-badge p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.about-content .lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-gray);
    line-height: 1.8;
}

.about-points {
    margin-top: 2rem;
}

.point-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.point-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.point-content h4 {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.point-content p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   Trading Signals Section
   ============================================ */
.signals-section {
    background: #0d0d0d;
    padding: 6rem 0;
    position: relative;
}

.signals-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
    backdrop-filter: blur(15px);
    pointer-events: none;
    z-index: 0;
}

.signals-carousel {
    position: relative;
    padding: 2rem 0;
}

.signal-card {
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.4) 0%, rgba(26, 26, 26, 0.6) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 25px;
    padding: 2.5rem;
    margin: 0 auto;
    max-width: 900px;
    transition: all 0.4s ease;
}

.signal-card:hover {
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.15);
}

.signal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.signal-pair {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.crypto-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #000;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

/* Compact Signal Cards (3 per slide) */
.signal-card-compact {
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.4) 0%, rgba(26, 26, 26, 0.6) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 1.75rem;
    height: 100%;
    transition: all 0.4s ease;
}

.signal-card-compact:hover {
    border-color: rgba(255, 215, 0, 0.4);
    /* transform: translateY(-5px); */
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.12);
}

.signal-header-compact {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.crypto-icon-compact {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: #000;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.25);
    flex-shrink: 0;
}

.crypto-icon-compact.eth {
    background: linear-gradient(135deg, #627eea 0%, #4c5fd5 100%);
    color: #fff;
}

.crypto-icon-compact.sol {
    background: linear-gradient(135deg, #9945FF 0%, #14F195 100%);
    color: #fff;
}

.crypto-icon-compact.bnb {
    background: linear-gradient(135deg, #F3BA2F 0%, #C99D25 100%);
    color: #000;
}

.crypto-icon-compact.ada {
    background: linear-gradient(135deg, #0033AD 0%, #0D47A1 100%);
    color: #fff;
}

.crypto-icon-compact.xrp {
    background: linear-gradient(135deg, #23292F 0%, #346AA9 100%);
    color: #fff;
}

.pair-info-compact h4 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.signal-body-compact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.signal-info-row {
    display: flex;
    gap: 1rem;
}

.info-col {
    flex: 1;
    background: rgba(17, 17, 17, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    padding: 0.75rem 1rem;
}

.info-col label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-col .value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
}

.info-col .value.success {
    color: #10b981;
}

.profit-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(217, 119, 6, 0.2) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    color: var(--primary-gold);
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.profit-badge i {
    font-size: 1.25rem;
}

.signal-meta-compact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.85rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.signal-meta-compact i {
    color: var(--primary-gold);
    font-size: 1rem;
}

.signal-status-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.9rem;
}

.signal-status-compact.success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.2) 100%);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.signal-status-compact i {
    font-size: 1rem;
}

/* Original crypto icon styles */
.crypto-icon.eth {
    background: linear-gradient(135deg, #627eea 0%, #4c5fd5 100%);
    color: #fff;
}

.crypto-icon.sol {
    background: linear-gradient(135deg, #9945FF 0%, #14F195 100%);
    color: #fff;
}

.crypto-icon.bnb {
    background: linear-gradient(135deg, #F3BA2F 0%, #C99D25 100%);
    color: #000;
}

.crypto-icon.ada {
    background: linear-gradient(135deg, #0033AD 0%, #0D47A1 100%);
    color: #fff;
}

.pair-info h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.signal-type {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.signal-type.long {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.3) 100%);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.signal-type.short {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(220, 38, 38, 0.3) 100%);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.signal-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 15px;
    font-weight: 500;
}

.signal-status.success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.2) 100%);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.signal-status i {
    font-size: 1.2rem;
}

.signal-body {
    margin-top: 1.5rem;
}

.signal-info-box {
    background: rgba(17, 17, 17, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    transition: all 0.3s ease;
}

.signal-info-box:hover {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(17, 17, 17, 0.8);
}

.signal-info-box label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.signal-info-box .value {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
}

.signal-info-box .value.success {
    color: #10b981;
}

.signal-info-box .value.danger {
    color: #ef4444;
}

.signal-info-box .value.profit {
    color: var(--primary-gold);
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.signal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.meta-item i {
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.signal-note {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 100%);
    border-left: 3px solid var(--primary-gold);
    border-radius: 10px;
    display: flex;
    gap: 1rem;
}

.signal-note i {
    color: var(--primary-gold);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.signal-note p {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* Carousel Controls */
.signals-carousel .carousel-control-prev,
.signals-carousel .carousel-control-next {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(217, 119, 6, 0.2) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.3s ease;
}

.signals-carousel .carousel-control-prev {
    left: -80px;
}

.signals-carousel .carousel-control-next {
    right: -80px;
}

.signals-carousel .carousel-control-prev:hover,
.signals-carousel .carousel-control-next:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(217, 119, 6, 0.3) 100%);
    border-color: rgba(255, 215, 0, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.signals-carousel .carousel-control-prev-icon,
.signals-carousel .carousel-control-next-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(77%) sepia(75%) saturate(537%) hue-rotate(359deg) brightness(103%) contrast(101%);
}

/* Carousel Indicators */
.signals-carousel .carousel-indicators {
    bottom: -50px;
}

.signals-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 215, 0, 0.3);
    border: none;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.signals-carousel .carousel-indicators button.active {
    width: 40px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
}

/* Signal Stats */
.signal-stats {
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(26, 26, 26, 0.5) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
}

.signal-stats .stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.signal-stats .stat-item p {
    color: var(--text-gray);
    font-size: 1rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .signals-carousel .carousel-control-prev {
        left: -30px;
    }

    .signals-carousel .carousel-control-next {
        right: -30px;
    }
}

@media (max-width: 768px) {
    .signal-card {
        padding: 1.5rem;
    }

    .signal-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .crypto-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .pair-info h3 {
        font-size: 1.5rem;
    }

    .signals-carousel .carousel-control-prev,
    .signals-carousel .carousel-control-next {
        display: none;
    }

    .signal-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .signal-stats .stat-item h3 {
        font-size: 2rem;
    }
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-section {
    background: #0d0d0d;
    padding: 6rem 0;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
    backdrop-filter: blur(15px);
    pointer-events: none;
    z-index: 0;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.4) 0%, rgba(26, 26, 26, 0.6) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.testimonial-stars {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.testimonial-text {
    color: var(--text-gray);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
}

.author-info h5 {
    color: var(--text-light);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.author-info p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.profit-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    color: var(--primary-black);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.satisfaction-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding: 3rem;
    background: rgba(45, 45, 45, 0.4);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.stat-box h3 {
    font-size: 3.5rem;
    color: var(--primary-gold);
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: var(--text-gray);
    font-size: 1rem;
}

/* ============================================
   Pricing Section
   ============================================ */
.pricing-section {
    background: #0d0d0d;
    padding: 6rem 0;
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
    backdrop-filter: blur(15px);
    pointer-events: none;
    z-index: 0;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.4) 0%, rgba(26, 26, 26, 0.6) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 25px;
    padding: 3rem 2rem;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.pricing-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
}

.pricing-card.featured {
    border: 2px solid var(--primary-gold);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(26, 26, 26, 0.9) 100%);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: 35px;
    right: -50px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    color: var(--primary-black);
    padding: 0.5rem 3rem;
    font-weight: 700;
    font-size: 0.85rem;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.pricing-header h3 {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--primary-gold);
    font-weight: 700;
}

.amount {
    font-size: 3.5rem;
    color: var(--primary-gold);
    font-weight: 900;
}

.period {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.price-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.8rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pricing-features li i {
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.pricing-features li.text-muted {
    color: var(--text-gray) !important;
}

.pricing-features li.text-muted i {
    color: #555;
}

.money-back-guarantee {
    margin-top: 4rem;
}

.guarantee-badge {
    display: inline-block;
    background: rgba(45, 45, 45, 0.6);
    border: 2px solid var(--primary-gold);
    border-radius: 20px;
    padding: 2rem 3rem;
}

.guarantee-badge i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.guarantee-badge h4 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.guarantee-badge p {
    color: var(--text-gray);
    margin: 0;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
    background: #0d0d0d;
    padding: 6rem 0;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
    backdrop-filter: blur(15px);
    pointer-events: none;
    z-index: 0;
}

.faq-item {
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.3) 0%, rgba(26, 26, 26, 0.5) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.1);
}

.faq-item .accordion-header {
    margin: 0;
}

.faq-item .accordion-button {
    background: transparent;
    color: var(--text-light);
    font-weight: 500;
    font-size: 1.05rem;
    padding: 1.5rem 1.75rem;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
}

.faq-item .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, transparent 100%);
    color: var(--primary-gold);
    box-shadow: none;
}

.faq-item .accordion-button:focus {
    border-color: rgba(255, 215, 0, 0.2);
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.1);
}

.faq-item .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFD700'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
}

.faq-item .accordion-button .bi-question-circle-fill {
    color: var(--primary-gold);
    font-size: 1.25rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.faq-item .accordion-button:not(.collapsed) .bi-question-circle-fill {
    opacity: 1;
    transform: scale(1.1);
}

.faq-item .accordion-body {
    padding: 0 1.75rem 1.75rem 1.75rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.faq-item .accordion-body p {
    margin: 0;
}

.faq-item .accordion-collapse {
    border: none;
}

/* FAQ CTA Box */
.faq-cta-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(26, 26, 26, 0.6) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.faq-cta-box:hover {
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
}

.faq-cta-box i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    display: inline-block;
}

.faq-cta-box h4 {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.faq-cta-box p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: #0d0d0d;
    padding: 4rem 0;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
    backdrop-filter: blur(15px);
    pointer-events: none;
    z-index: 0;
}

.cta-container {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(26, 26, 26, 0.7) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 2px solid var(--primary-gold);
    border-radius: 25px;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: glow 4s ease-in-out infinite;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-features span {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.cta-features i {
    color: var(--primary-gold);
    margin-right: 0.5rem;
}

.cta-note {
    color: var(--text-gray);
    font-size: 0.85rem;
    font-style: italic;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-brand h4 {
    color: var(--primary-gold);
    font-size: 1.5rem;
}

.footer-brand p {
    color: var(--text-gray);
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-gold);
    color: var(--primary-black);
    transform: translateY(-5px);
}

.footer-title {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.footer-contact i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    width: 25px;
}

.footer-divider {
    border-color: rgba(255, 215, 0, 0.1);
}

.copyright {
    color: var(--text-gray);
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.footer-legal li {
    display: inline;
}

.footer-legal a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-gold);
}

/* ============================================
   Back to Top Button
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    color: var(--primary-black);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.back-to-top.show {
    display: flex;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-card {
        height: 300px;
    }

    .card-glow {
        width: 300px;
        height: 300px;
    }

    .achievement-badge {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .achievement-badge i {
        font-size: 3rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }

    .satisfaction-stats {
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .stat-item {
        min-width: 120px;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .btn-gold,
    .btn-outline-gold {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }

    .hero-cta {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .hero-cta .btn {
        width: 100%;
        margin: 0 !important;
    }

    .cta-container {
        padding: 2rem 1.5rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }
}