/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Manrope', sans-serif;
}

:root {
    --primary-color: #F0B90B;
    --primary-dark: #D9A451;
    --secondary-color: #D9A451;
    --text-color: #1E2329;
    --light-text: #707A8A;
    --background-color: #FFFFFF;
    --dark-background: #0B0E11;
    --medium-background: #181A20;
    --light-background: #F5F5F5;
    --border-color: #2B3139;
    --success-color: #03A66D;
    --warning-color: #F0B90B;
    --error-color: #F6465D;
    --gradient-gold: linear-gradient(90deg, #F0B90B, #D9A451);
}

body {
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Top Banner */
.top-banner {
    background: var(--dark-background);
    color: var(--primary-color);
    text-align: center;
    padding: 12px 0;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(240, 185, 11, 0.2);
}

.top-banner p {
    margin: 0;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: var(--dark-background);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(240, 185, 11, 0.1) 0%, rgba(11, 14, 17, 0) 70%);
    z-index: 1;
}

.hero-overlay-image {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 50%;
    overflow: visible;
    z-index: 0;
    opacity: 0.15;
}

.overlay-img {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    height: auto;
    width: 100%;
    max-width: none;
    object-fit: contain;
    object-position: right center;
}

.hero-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.logo-container {
    margin-bottom: 30px;
}

.logo-main {
    max-width: 180px;
    height: auto;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.hero-text {
    font-size: 18px;
    margin-bottom: 30px;
    color: #EFEFEF;
}

.highlight {
    color: var(--primary-color);
    font-weight: 700;
}

.hero-benefits {
    margin-bottom: 30px;
}

.benefit {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    background: var(--gradient-gold);
    color: var(--dark-background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 14px;
    font-weight: bold;
}

.benefit p {
    font-size: 16px;
    font-weight: 600;
    color: #EFEFEF;
}

.social-proof {
    margin-top: 30px;
}

.social-proof-text {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    padding: 0 5px;
}

.social-proof-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,215,0,0.2) 0%, rgba(255,215,0,0.8) 50%, rgba(255,215,0,0.2) 100%);
}

.partners-logos-mini {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 5px;
}

.partner-logo-mini {
    height: 24px;
    width: auto;
    opacity: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 3px rgba(255, 255, 255, 0.5));
    transition: all 0.3s ease;
}

.partner-logo-mini:hover {
    transform: scale(1.1);
    filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

/* Registration Form */
.registration-form-container {
    flex: 1;
    max-width: 450px;
    background-color: var(--medium-background);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 30px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(240, 185, 11, 0.2);
}

.form-header {
    text-align: center;
    margin-bottom: 25px;
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.form-subtitle {
    font-size: 16px;
    color: #EFEFEF;
}

.registration-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 20px;
}

.registration-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #EFEFEF;
}

.registration-form input {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
    background-color: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
}

.registration-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(240, 185, 11, 0.2);
}

.registration-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.registration-buttons {
    margin-top: 10px;
}

.button {
    display: inline-block;
    padding: 14px 28px;
    background: var(--gradient-gold);
    color: var(--dark-background);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.button:hover {
    background: linear-gradient(90deg, #D9A451, #F0B90B);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(240, 185, 11, 0.3);
}

.button-submit {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    background: var(--gradient-gold);
    position: relative;
    overflow: hidden;
}

.button-submit:hover {
    background: linear-gradient(90deg, #D9A451, #F0B90B);
}

.button-submit::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url('../images/arrow-right.svg');
    background-size: contain;
    background-repeat: no-repeat;
    filter: brightness(0);
}

.form-guarantee {
    text-align: center;
    font-size: 14px;
    color: var(--light-text);
    margin-top: 15px;
}

/* Social Proof Section */
.social-proof-section {
    padding: 80px 0;
    background-color: var(--dark-background);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(240, 185, 11, 0.1);
    border-bottom: 1px solid rgba(240, 185, 11, 0.1);
}

.social-proof-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(240, 185, 11, 0.05) 0%, rgba(11, 14, 17, 0) 70%);
    z-index: 1;
}

.social-proof-section .container {
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    color: #FFFFFF;
}

.section-subtitle {
    font-size: 18px;
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.5;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
}

.partners-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 25px;
    margin-top: 50px;
    position: relative;
    padding: 30px 20px;
    background: rgba(20, 20, 30, 0.3);
    border-radius: 15px;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(240, 185, 11, 0.05);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(240, 185, 11, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 85% 60%, rgba(240, 185, 11, 0.03) 0%, transparent 20%);
}

.partners-logos::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, rgba(240, 185, 11, 0), rgba(240, 185, 11, 0.5), rgba(240, 185, 11, 0));
}

.partner-logo {
    height: 70px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
    border: 1px solid rgba(240, 185, 11, 0.15);
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    animation: logoGlow 4s infinite ease-in-out;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(240, 185, 11, 0.2);
    border-color: var(--primary-color);
    background-color: rgba(240, 185, 11, 0.08);
}

.partner-logo img {
    max-height: 100%;
    max-width: 100%;
    filter: grayscale(50%) brightness(1.8);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%) brightness(1.3);
    opacity: 1;
    transform: scale(1.05);
}

.partner-logo.animated {
    animation: fadeInUp 0.5s ease forwards;
}

/* Each partner gets a slight delay for staggered animation */
.partner-logo:nth-child(1) { animation-delay: 0.1s; }
.partner-logo:nth-child(2) { animation-delay: 0.2s; }
.partner-logo:nth-child(3) { animation-delay: 0.3s; }
.partner-logo:nth-child(4) { animation-delay: 0.4s; }
.partner-logo:nth-child(5) { animation-delay: 0.5s; }
.partner-logo:nth-child(6) { animation-delay: 0.6s; }
.partner-logo:nth-child(7) { animation-delay: 0.7s; }
.partner-logo:nth-child(8) { animation-delay: 0.8s; }

.partners-note {
    margin-top: 40px;
    font-size: 15px;
    color: var(--light-text);
    padding: 15px 25px;
    background-color: rgba(240, 185, 11, 0.05);
    border-radius: 50px;
    display: inline-block;
    border: 1px solid rgba(240, 185, 11, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    font-weight: 500;
}

.partners-note::before {
    content: '🔒';
    margin-right: 8px;
    font-size: 14px;
}

/* Add tooltip for partner logos */
.partner-logo::after {
    content: attr(data-exchange);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--medium-background);
    color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 1px solid rgba(240, 185, 11, 0.2);
    z-index: 10;
}

.partner-logo:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: -30px;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    text-align: center;
    background-color: var(--dark-background);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(240, 185, 11, 0.05) 0%, rgba(11, 14, 17, 0) 70%);
    z-index: 1;
}

.how-it-works .container {
    position: relative;
    z-index: 2;
}

.video-container {
    margin: 50px auto;
    max-width: 800px;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 0, 0, 0.2);
    z-index: 2;
    border: 2px solid rgba(240, 185, 11, 0.3);
    transform: perspective(1000px) rotateX(2deg);
    transition: all 0.5s ease;
    width: 100%; /* Ensure full width */
    box-sizing: border-box; /* Include padding and border in the element's width and height */
    background-color: #0b0e11; /* Match the video background color */
}

.video-container:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(240, 185, 11, 0.15);
    transform: perspective(1000px) rotateX(0deg) scale(1.02);
    border-color: rgba(240, 185, 11, 0.6);
}

.video-container::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 14px;
    background: linear-gradient(45deg, 
                rgba(240, 185, 11, 0.3), 
                rgba(11, 14, 17, 0), 
                rgba(240, 185, 11, 0.3), 
                rgba(11, 14, 17, 0));
    z-index: -1;
    animation: borderGlow 4s infinite linear;
    filter: blur(5px);
}

.video-container::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 10%;
    right: 10%;
    height: 30px;
    background: radial-gradient(ellipse at center, rgba(240, 185, 11, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: -2;
    filter: blur(5px);
    transform: perspective(1000px) rotateX(60deg);
    opacity: 0.6;
}

@keyframes borderGlow {
    0% { background-position: 0% 0%; }
    100% { background-position: 300% 0%; }
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 1;
    background-color: #0b0e11; /* Match the video background color */
}

.video-container .play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.video-container:hover .play-overlay {
    opacity: 1;
}

.video-container .play-button {
    width: 80px;
    height: 80px;
    background: rgba(240, 185, 11, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(240, 185, 11, 0.5);
    position: relative; /* Added for better positioning */
}

.video-container:hover .play-button {
    transform: scale(1);
}

.video-container .play-button::before {
    content: '';
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid rgba(0, 0, 0, 0.8);
    margin-left: 5px;
}

.video-container .quality-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(240, 185, 11, 0.8);
    color: black;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 3;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.video-container:hover .quality-badge {
    opacity: 1;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 60px 0;
    position: relative;
    z-index: 2;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(240, 185, 11, 0), rgba(240, 185, 11, 0.2), rgba(240, 185, 11, 0));
    z-index: 1;
}

.step-box {
    flex: 1;
    min-width: 220px;
    max-width: 260px;
    background-color: var(--medium-background);
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(240, 185, 11, 0.1);
}

.step-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.step-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(240, 185, 11, 0.05), transparent 70%);
    border-radius: 10px;
    z-index: -1;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 1;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.step-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(240, 185, 11, 0), rgba(240, 185, 11, 0.5), rgba(240, 185, 11, 0));
}

.step-description {
    font-size: 15px;
    color: #EFEFEF;
    line-height: 1.6;
}

.step-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.step-box:hover .step-icon {
    opacity: 1;
    transform: scale(1.1);
}

.step-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
}

.center-cta {
    text-align: center;
    margin: 40px 0;
    position: relative;
    z-index: 2;
}

.cta-note {
    font-size: 14px;
    color: var(--light-text);
    margin-top: 15px;
    opacity: 0.8;
}

.button-cta {
    padding: 16px 32px;
    font-size: 18px;
    background: var(--gradient-gold);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(240, 185, 11, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(240, 185, 11, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(240, 185, 11, 0);
    }
}

/* Animation for step boxes */
.step-box.animated:nth-child(1) {
    animation: fadeInUp 0.5s ease 0.1s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.step-box.animated:nth-child(2) {
    animation: fadeInUp 0.5s ease 0.3s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.step-box.animated:nth-child(3) {
    animation: fadeInUp 0.5s ease 0.5s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.step-box.animated:nth-child(4) {
    animation: fadeInUp 0.5s ease 0.7s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* Results Section */
.results {
    padding: 80px 0;
    background-color: var(--dark-background);
    position: relative;
    overflow: hidden;
}

.results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(240, 185, 11, 0.1) 0%, rgba(11, 14, 17, 0) 70%);
    z-index: 1;
}

.results .container {
    position: relative;
    z-index: 2;
}

.results-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.results-content {
    flex: 1;
    min-width: 300px;
}

.results-subtitle {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #FFFFFF;
    position: relative;
    display: inline-block;
}

.results-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gradient-gold);
}

.testimonials {
    margin-bottom: 40px;
}

.testimonial {
    background-color: var(--medium-background);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(240, 185, 11, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 60px;
    line-height: 1;
    color: rgba(240, 185, 11, 0.1);
    font-family: Georgia, serif;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.testimonial-content {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 15px;
    color: #EFEFEF;
    position: relative;
    z-index: 1;
    padding-left: 15px;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    text-align: right;
    color: var(--primary-color);
}

.security-features {
    background-color: var(--medium-background);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(240, 185, 11, 0.1);
    position: relative;
    overflow: hidden;
}

.security-features::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at top right, rgba(240, 185, 11, 0.1), transparent 70%);
    z-index: 0;
}

.security-features h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
    display: inline-block;
}

.security-features h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-gold);
}

.security-list {
    list-style-type: none;
    position: relative;
    z-index: 1;
}

.security-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #EFEFEF;
}

.security-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Algorithm Diagram */
.algorithm-diagram {
    flex: 1;
    min-width: 300px;
    position: relative;
    height: 500px;
    padding: 30px;
    z-index: 2;
}

.algorithm-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-background);
    font-weight: 800;
    font-size: 16px;
    box-shadow: 0 0 30px rgba(240, 185, 11, 0.4);
    z-index: 3;
    text-align: center;
}

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.connection-line {
    position: absolute;
    background: linear-gradient(90deg, rgba(240, 185, 11, 0.9), rgba(240, 185, 11, 0.1));
    transform-origin: left center;
    z-index: 1;
}

.exchanges-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.exchange-box {
    width: 110px;
    background-color: var(--medium-background);
    border-radius: 10px;
    padding: 15px 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(240, 185, 11, 0.1);
    transition: all 0.3s ease;
    z-index: 2;
}

.exchange-box:hover {
    transform: scale(1.1) !important;
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.exchange-box.bitso {
    background: linear-gradient(45deg, var(--medium-background), rgba(40, 45, 55, 1));
}

.exchange-box.binance {
    background: linear-gradient(45deg, var(--medium-background), rgba(40, 45, 55, 1));
}

.exchange-box.coinbase {
    background: linear-gradient(45deg, var(--medium-background), rgba(40, 45, 55, 1));
}

.exchange-box.bybit {
    background: linear-gradient(45deg, var(--medium-background), rgba(40, 45, 55, 1));
}

.exchange-box.gate-io {
    background: linear-gradient(45deg, var(--medium-background), rgba(40, 45, 55, 1));
}

.exchange-box.bitfinex {
    background: linear-gradient(45deg, var(--medium-background), rgba(40, 45, 55, 1));
}

.exchange-box.htx {
    background: linear-gradient(45deg, var(--medium-background), rgba(40, 45, 55, 1));
}

.exchange-box.binance-us {
    background: linear-gradient(45deg, var(--medium-background), rgba(40, 45, 55, 1));
}

.exchange-name {
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5px;
    color: #EFEFEF;
}

.percentage {
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
    color: var(--primary-color);
    position: relative;
}

.dollar-amount {
    font-size: 10px;
    display: block;
    font-weight: 600;
    color: var(--success-color);
}

.coin-indicators {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.coin {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    overflow: hidden;
}

.coin img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: var(--dark-background);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(240, 185, 11, 0.05) 0%, rgba(11, 14, 17, 0) 70%);
    z-index: 1;
}

.faq .container {
    position: relative;
    z-index: 2;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.faq-item {
    background-color: var(--medium-background);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(240, 185, 11, 0.1);
    opacity: 0;
    transform: translateY(30px);
}

.faq-item.animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.faq-item.animated:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

/* Add staggered animation delays for FAQ items */
.faq-item:nth-child(1) { transition-delay: 0.1s; }
.faq-item:nth-child(2) { transition-delay: 0.2s; }
.faq-item:nth-child(3) { transition-delay: 0.3s; }
.faq-item:nth-child(4) { transition-delay: 0.4s; }
.faq-item:nth-child(5) { transition-delay: 0.5s; }
.faq-item:nth-child(6) { transition-delay: 0.6s; }

.faq-question-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    position: relative;
}

.faq-question-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25px;
    right: 25px;
    height: 1px;
    background: linear-gradient(90deg, rgba(240, 185, 11, 0), rgba(240, 185, 11, 0.2), rgba(240, 185, 11, 0));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question-wrapper::after {
    transform: scaleX(1);
}

.faq-question {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    padding-right: 20px;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question {
    color: var(--primary-color);
}

.faq-toggle {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-toggle svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle svg {
    transform: rotate(45deg);
}

.faq-answer {
    font-size: 15px;
    color: var(--light-text);
    padding: 0 25px 20px;
    display: none;
    animation: fadeIn 0.5s ease;
    line-height: 1.6;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-cta {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background-color: rgba(240, 185, 11, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(240, 185, 11, 0.1);
    opacity: 0;
    transform: translateY(20px);
}

.faq-cta.animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease 0.7s, transform 0.5s ease 0.7s;
}

.faq-cta p {
    color: #EFEFEF;
    font-size: 16px;
}

.text-link {
    color: var(--primary-color);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.text-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.text-link:hover {
    color: #FFFFFF;
}

.text-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

@media screen and (max-width: 991px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .algorithm-diagram {
        margin-top: 50px;
    }
    
    .video-container {
        margin: 40px auto;
        transform: perspective(1000px) rotateX(1deg);
        max-width: 90%; /* Slightly decreased from desktop */
    }
    
    .video-container .play-button {
        width: 70px;
        height: 70px;
    }
    
    /* Add hero-flex tablet styles */
    .hero-flex {
        gap: 30px;
    }
    
    .registration-form-container {
        max-width: 400px;
        padding: 25px;
    }
}

@media screen and (max-width: 767px) {
    .container {
        max-width: 540px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    /* Add hero-flex mobile styles */
    .hero-flex {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .registration-form-container {
        max-width: 100%;
        width: 100%;
    }
    
    /* Partners logos grid for mobile */
    .partners-logos {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 15px;
        padding: 20px 15px;
    }
    
    .partner-logo {
        height: 60px;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .form-row .form-group {
        min-width: 100%;
    }
    
    .video-container {
        margin: 30px auto;
        transform: perspective(1000px) rotateX(1deg);
    }
    
    .video-container:hover {
        transform: perspective(1000px) rotateX(0deg) scale(1.01);
    }
    
    .video-container .play-button {
        width: 60px;
        height: 60px;
    }
    
    .video-container .play-button::before {
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
        border-left: 20px solid rgba(0, 0, 0, 0.8);
    }
    
    .video-container .quality-badge {
        top: 10px;
        right: 10px;
        font-size: 10px;
        padding: 3px 6px;
    }
    
    .hero-overlay-image {
        width: 100%;
        opacity: 0.1;
    }
    
    .overlay-img {
        width: 100%;
        object-position: center;
    }
    
    .algorithm-diagram {
        display: none;
    }
    
    .results-grid {
        flex-direction: column;
    }
    
    .results-content {
        width: 100%;
    }
}

@media screen and (max-width: 575px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .top-banner p {
        font-size: 10px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    /* Improve form on small mobile */
    .registration-form-container {
        padding: 20px 15px;
    }
    
    .form-title {
        font-size: 22px;
    }
    
    .form-subtitle {
        font-size: 14px;
    }
    
    .registration-form input {
        padding: 12px;
        font-size: 14px;
    }
    
    .button-submit {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .form-guarantee {
        font-size: 12px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .step-box {
        min-width: 100%;
    }
    
    .final-cta-title {
        font-size: 26px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .video-container {
        margin: 20px auto;
        transform: none;
        border-radius: 8px;
    }
    
    .video-container:hover {
        transform: scale(1.01);
    }
    
    .video-container::before {
        border-radius: 10px;
    }
    
    .video-container .play-button {
        width: 50px;
        height: 50px;
    }
    
    .video-container .play-button::before {
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 16px solid rgba(0, 0, 0, 0.8);
        margin-left: 3px;
    }
    
    /* Further adjust partners logos for smallest screens */
    .partners-logos {
        gap: 10px;
        padding: 15px 10px;
    }
    
    .partner-logo {
        height: 50px;
        padding: 10px;
    }
}

.video-container.playing {
    padding-bottom: 56.25%; /* Maintain 16:9 aspect ratio when playing */
}

.video-container.playing .play-overlay,
.video-container.playing .quality-badge {
    display: none;
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: var(--gradient-gold);
    color: var(--dark-background);
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(240, 185, 11, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(100px);
    opacity: 0;
    animation: floatIn 0.5s forwards 1s, floatingPulse 3s infinite 4s;
}

@keyframes floatIn {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes floatingPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(240, 185, 11, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 20px rgba(240, 185, 11, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(240, 185, 11, 0.3);
    }
}

.floating-cta:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 20px rgba(240, 185, 11, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
    animation: none;
    opacity: 1 !important;
}

.floating-cta:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 10px rgba(240, 185, 11, 0.2);
}

.floating-cta-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: floating-shine 3s infinite;
}

@keyframes floating-shine {
    0% {
        left: -100%;
    }
    20%, 100% {
        left: 200%;
    }
}

.floating-cta.hidden {
    transform: translateY(150px);
    opacity: 0;
    pointer-events: none;
}

/* Media Queries for Floating CTA */
@media screen and (max-width: 767px) {
    .floating-cta {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media screen and (max-width: 575px) {
    .floating-cta {
        bottom: 15px;
        right: 15px;
        padding: 10px 16px;
        font-size: 13px;
        max-width: 180px;
        text-align: center;
        line-height: 1.3;
    }
}

/* Add animation keyframes and effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animated {
    animation: fadeInUp 0.5s ease forwards;
}

.hero-title.animated {
    animation: fadeInLeft 0.7s ease-out forwards;
}

.hero-text.animated {
    animation: fadeInLeft 0.7s ease-out 0.2s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.benefit.animated:nth-child(1) {
    animation: fadeInUp 0.5s ease 0.3s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.benefit.animated:nth-child(2) {
    animation: fadeInUp 0.5s ease 0.5s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.benefit.animated:nth-child(3) {
    animation: fadeInUp 0.5s ease 0.7s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.section-title.animated {
    animation: fadeInUp 0.7s ease forwards;
}

/* Gold shine effect */
.gold-shine {
    position: relative;
    overflow: hidden;
}

.gold-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
    animation: gold-shine 1.5s ease-in-out;
}

@keyframes gold-shine {
    0% { background-position: -100px; }
    100% { background-position: 200px; }
}

/* Error message styling */
.error {
    border-color: var(--error-color) !important;
    box-shadow: 0 0 0 2px rgba(246, 70, 93, 0.2) !important;
}

.error-message {
    color: var(--error-color);
    font-size: 12px;
    margin-top: 5px;
    font-weight: 600;
}

/* Loading state for buttons */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(11, 14, 17, 0.3);
    border-top-color: var(--dark-background);
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

@keyframes spin {
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

/* FAQ Questions open state */
.faq-question.open::before {
    content: "-";
    transform: translateY(-2px);
}

/* Add floating animation to exchange boxes */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.exchange-box.animated {
    animation: fadeInUp 0.5s ease forwards;
}

.exchange-box.animated:hover {
    animation: none;
    transform: scale(1.1);
}

/* Responsive styles for algorithm diagram */
@media screen and (max-width: 991px) {
    .results-grid {
        flex-direction: column;
    }
    
    .algorithm-diagram {
        height: 600px;
        margin-top: 30px;
    }
}

@media screen and (max-width: 767px) {
    .algorithm-diagram {
        height: 500px;
    }
    
    .exchange-box {
        width: 90px;
        padding: 10px 8px;
    }
    
    .exchange-name {
        font-size: 9px;
    }
    
    .percentage {
        font-size: 16px;
    }
    
    .dollar-amount {
        font-size: 9px;
    }
    
    .coin {
        width: 16px;
        height: 16px;
    }
}

@media screen and (max-width: 575px) {
    .algorithm-diagram {
        height: 450px;
    }
    
    .algorithm-center {
        width: 100px;
        height: 100px;
        font-size: 14px;
    }
    
    .exchange-box {
        width: 80px;
    }
    
    .coin-indicators {
        gap: 3px;
    }
    
    .coin {
        width: 14px;
        height: 14px;
    }
}

@keyframes logoGlow {
    0% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), 0 0 10px rgba(240, 185, 11, 0.15);
    }
    100% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
}

.partner-logo:nth-child(2n) {
    animation-delay: 1s;
}

.partner-logo:nth-child(3n) {
    animation-delay: 2s;
}

.partner-logo:nth-child(4n) {
    animation-delay: 3s;
}

.social-proof-section .section-title {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(240, 185, 11, 0.3);
    position: relative;
    display: inline-block;
}

.social-proof-section .section-title::before {
    content: '';
    position: absolute;
    height: 3px;
    width: 60px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    bottom: -12px;
    left: 50%;
    transform: translateX(-100%);
    border-radius: 2px;
}

.social-proof-section .section-title::after {
    right: 50%;
    transform: translateX(100%);
    background: linear-gradient(90deg, transparent, var(--primary-color));
}

.social-proof-section .section-subtitle {
    max-width: 800px;
    margin: 25px auto 0;
    color: #b3b3c3;
    font-size: 18px;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background-color: var(--dark-background);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(240, 185, 11, 0.1) 0%, rgba(11, 14, 17, 0) 70%);
    z-index: 1;
}

.final-cta-box {
    background-color: var(--medium-background);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(240, 185, 11, 0.2);
}

.final-cta-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.final-cta-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    color: #EFEFEF;
}

.final-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.form-row .form-group {
    flex: 1;
    min-width: 200px;
}

/* Footer */
footer {
    padding: 60px 0 30px;
    background-color: var(--dark-background);
    color: #EFEFEF;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    max-width: 150px;
}

.footer-links {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-link {
    color: #EFEFEF;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-security {
    margin-bottom: 20px;
    padding: 10px 20px;
    background-color: rgba(240, 185, 11, 0.1);
    border-radius: 50px;
    display: inline-block;
}

.security-text {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.copyright {
    font-size: 12px;
    color: var(--light-text);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: var(--medium-background);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    padding: 15px;
    display: none;
    border: 1px solid rgba(240, 185, 11, 0.2);
    max-width: 400px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-content p {
    font-size: 14px;
    margin: 0;
    color: #EFEFEF;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-button {
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

.cookie-button.accept {
    background: var(--gradient-gold);
    color: var(--dark-background);
}

.cookie-button.accept:hover {
    opacity: 0.9;
}

.cookie-button.decline {
    background-color: transparent;
    color: #EFEFEF;
    border: 1px solid rgba(240, 185, 11, 0.3);
}

.cookie-button.decline:hover {
    border-color: var(--primary-color);
}

@media screen and (max-width: 767px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-gold);
    border: none;
    color: var(--dark-background);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Team Section Styles */
.team-section {
    padding: 80px 0;
    background-color: var(--dark-background);
    position: relative;
    text-align: center;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(240, 185, 11, 0), rgba(240, 185, 11, 0.3), rgba(240, 185, 11, 0));
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    background: rgba(20, 20, 30, 0.3);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(240, 185, 11, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(240, 185, 11, 0.1);
    border-color: rgba(240, 185, 11, 0.2);
}

.team-member-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.team-member-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FFFFFF;
    opacity: 0.8;
}

.team-member-bio {
    font-size: 15px;
    line-height: 1.6;
    color: var(--light-text);
    margin-bottom: 15px;
}

.team-member-social {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.linkedin-link:hover {
    color: #FFD700;
    transform: translateY(-2px);
}

.linkedin-icon {
    margin-right: 6px;
    width: 18px;
    height: 18px;
}

@media screen and (max-width: 991px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 767px) {
    .team-section {
        padding: 60px 0;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-member {
        padding: 25px;
    }
    
    .team-member-image {
        width: 150px;
        height: 150px;
    }
} 