body.page-template-defi-invest-platform #defi-invest-platform br {
  display: none;
}

body.page-template-defi-invest-platform #site-header {
  display: none;
}

body.page-template-defi-invest-platform #site-topbar {
  display: none;
}

body.page-template-defi-invest-platform #site-header-sticky {
  display: none;
}

body.page-template-defi-invest-platform .content-header {
  display: none;
}

body.page-template-defi-invest-platform .content-body-inner.wrap {
  margin: 0;
  max-width: 100%;
  width: auto;
}

body.page-template-defi-invest-platform {
    --primary-color: #0469d8;
    --primary-dark: #0355b3;
    --primary-light: #1a7ae8;
    --white: #ffffff;
    --text-dark: #1a1a2e;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-dark: #0a0e27;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --gradient-1: linear-gradient(135deg, #0469d8 0%, #1a7ae8 100%);
    --gradient-2: linear-gradient(135deg, #0469d8 0%, #00d4ff 100%);
    --shadow-sm: 0 2px 10px rgba(4, 105, 216, 0.1);
    --shadow-md: 0 5px 20px rgba(4, 105, 216, 0.15);
    --shadow-lg: 0 10px 40px rgba(4, 105, 216, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body.page-template-defi-invest-platform {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.defi-invest-platform .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.defi-invest-platform .topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.defi-invest-platform .topbar.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
}

.defi-invest-platform .nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.defi-invest-platform .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.defi-invest-platform .logo:hover {
    opacity: 0.8;
}

.defi-invest-platform .logo i {
    font-size: 1.5rem;
}

.defi-invest-platform .logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
}

.defi-invest-platform .nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.defi-invest-platform .nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.defi-invest-platform .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.defi-invest-platform .nav-link:hover {
    color: var(--primary-color);
}

.defi-invest-platform .nav-link:hover::after {
    width: 100%;
}

.defi-invest-platform .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.defi-invest-platform .nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

.defi-invest-platform .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
}

.defi-invest-platform .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
}

.defi-invest-platform #matrixCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.12;
    z-index: 1;
}

.defi-invest-platform .matrix-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(240, 247, 255, 0.8) 70%);
    z-index: 2;
    pointer-events: none;
}

.defi-invest-platform .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.defi-invest-platform .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(4, 105, 216, 0.1);
    border: 1px solid rgba(4, 105, 216, 0.2);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.defi-invest-platform .hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    animation: fadeInUp 0.8s ease-out 0.2s both;
    text-transform: unset;
}

.defi-invest-platform .title-line {
    display: block;
}

.defi-invest-platform .highlight {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.defi-invest-platform .hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.defi-invest-platform .external-link {
    color: var(--primary-color);
    text-decoration: underline;
    text-decoration-color: rgba(4, 105, 216, 0.3);
    text-underline-offset: 3px;
    transition: var(--transition);
    font-weight: 500;
}

.defi-invest-platform .external-link:hover {
    color: var(--primary-dark);
    text-decoration-color: var(--primary-color);
}

.defi-invest-platform .hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.defi-invest-platform .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.defi-invest-platform .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.defi-invest-platform .btn:hover::before {
    width: 300px;
    height: 300px;
}

.defi-invest-platform .btn-primary {
    background: var(--gradient-1);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.defi-invest-platform .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.defi-invest-platform .btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.defi-invest-platform .btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.defi-invest-platform .btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.defi-invest-platform .hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.defi-invest-platform .stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.defi-invest-platform .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.defi-invest-platform .stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    border-radius: 12px;
    color: var(--white);
    font-size: 1.5rem;
    animation: none !important;
}

.defi-invest-platform .stat-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
}

.defi-invest-platform .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}


.defi-invest-platform .section {
    padding: 100px 0;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.defi-invest-platform .section.visible {
    opacity: 1;
    transform: translateY(0);
}

.defi-invest-platform .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.defi-invest-platform .section-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.defi-invest-platform .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.defi-invest-platform .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.defi-invest-platform .features {
    background: var(--white);
}

.defi-invest-platform .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.defi-invest-platform .feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.defi-invest-platform .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: var(--transition);
}

.defi-invest-platform .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.defi-invest-platform .feature-card:hover::before {
    transform: scaleX(1);
}

.defi-invest-platform .feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    position: relative;
    font-size: 2rem;
    color: var(--white);
    z-index: 1;
    animation: none !important;
}

.defi-invest-platform .icon-glow {
    display: none;
}


@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

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

.defi-invest-platform .feature-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.defi-invest-platform .feature-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.defi-invest-platform .feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(4, 105, 216, 0.1);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
}

.defi-invest-platform .how-it-works {
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
}

.defi-invest-platform .steps-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: stretch;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.defi-invest-platform .step-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    transition: var(--transition);
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.defi-invest-platform .step-item::after,
.defi-invest-platform .step-item::before {
    display: none;
}

.defi-invest-platform .step-connector {
    display: none;
}

.defi-invest-platform .step-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.defi-invest-platform .step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.defi-invest-platform .step-icon {
    width: 80px;
    height: 80px;
    margin: 1.5rem auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(4, 105, 216, 0.1);
    border-radius: 20px;
    font-size: 2rem;
    color: var(--primary-color);
    animation: none !important;
}

.defi-invest-platform .step-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.defi-invest-platform .step-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.defi-invest-platform .step-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.defi-invest-platform .detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.defi-invest-platform .step-connector {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.5;
}

.defi-invest-platform .protection {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.defi-invest-platform .protection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(4, 105, 216, 0.02) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.defi-invest-platform .protection .container {
    position: relative;
    z-index: 1;
}

.defi-invest-platform .protection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.defi-invest-platform .protection-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.defi-invest-platform .protection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.defi-invest-platform .protection-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.defi-invest-platform .protection-card:hover::before {
    opacity: 0.05;
}

.defi-invest-platform .protection-icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    position: relative;
    font-size: 2rem;
    color: var(--white);
    z-index: 1;
    animation: none !important;
}

.defi-invest-platform .protection-glow {
    display: none;
}

.defi-invest-platform .protection-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.defi-invest-platform .protection-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.defi-invest-platform .protection-list {
    list-style: none;
    position: relative;
    z-index: 1;
}

.defi-invest-platform .protection-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-dark);
}

.defi-invest-platform .protection-list i {
    color: var(--success);
    font-size: 0.9rem;
}

.defi-invest-platform .benefits {
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
}

.defi-invest-platform .benefits-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.defi-invest-platform .benefits-column {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.defi-invest-platform .benefits-column:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.defi-invest-platform .benefit-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(4, 105, 216, 0.1);
}

.defi-invest-platform .benefit-header .section-title {
    font-size: 1.8rem;
    margin-bottom: 0;
}

.defi-invest-platform .benefit-header .section-title::after {
    display: none;
}

.defi-invest-platform .benefit-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    border-radius: 15px;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
    animation: none !important;
}

.defi-invest-platform .benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.defi-invest-platform .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.defi-invest-platform .benefit-icon-small {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(4, 105, 216, 0.1);
    border-radius: 8px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.25rem;
    animation: none !important;
}

.defi-invest-platform .benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

.defi-invest-platform .faq {
    background: var(--white);
}

.defi-invest-platform .faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.defi-invest-platform .faq-item {
    background: var(--white);
    border: 2px solid rgba(4, 105, 216, 0.1);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.defi-invest-platform .faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.defi-invest-platform .faq-item.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.defi-invest-platform .faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
    transition: background 0.3s ease-out, transform 0.2s ease-out;
}

.defi-invest-platform .faq-item.active .faq-question {
    background: rgba(4, 105, 216, 0.05);
}

.defi-invest-platform .faq-question:active {
    transform: scale(0.98);
}

.defi-invest-platform .faq-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    border-radius: 12px;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
    animation: none !important;
}

.defi-invest-platform .faq-question h3 {
    flex: 1;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.defi-invest-platform .faq-arrow {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.defi-invest-platform .faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.defi-invest-platform .faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
                padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 1.5rem;
}

.defi-invest-platform .faq-item.active .faq-answer {
    opacity: 1;
    transform: translateY(0);
    padding: 0 1.5rem 1.5rem;
}

.defi-invest-platform .faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
    padding-top: 1rem;
    transition: opacity 0.3s ease-out 0.2s;
}

.defi-invest-platform .faq-item.active .faq-answer p {
    opacity: 1;
}

.defi-invest-platform .video {
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
}

.defi-invest-platform .videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.defi-invest-platform .video-item {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.defi-invest-platform .video-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.defi-invest-platform .video-item-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.defi-invest-platform .video-item-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    border-radius: 15px;
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.defi-invest-platform .video-item-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.defi-invest-platform .video-item-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.defi-invest-platform .video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--white);
    margin-top: auto;
}

.defi-invest-platform .video-container iframe,
.defi-invest-platform .video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
    object-fit: cover;
}

.defi-invest-platform .video-player {
    background: #000;
}

.defi-invest-platform .video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(4, 105, 216, 0.05) 0%, rgba(4, 105, 216, 0.1) 100%);
    border: 2px dashed rgba(4, 105, 216, 0.3);
    border-radius: 15px;
}

.defi-invest-platform .video-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    opacity: 0.6;
}

.defi-invest-platform .video-placeholder-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.defi-invest-platform .video-placeholder-subtext {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Gallery/Showcase Section */
.defi-invest-platform .gallery {
    background: var(--white);
    position: relative;
}

.defi-invest-platform .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.defi-invest-platform .gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
    animation: fadeInUp 0.6s ease-out forwards;
}

.defi-invest-platform .gallery-item:nth-child(1) {
    animation-delay: 0.1s;
}

.defi-invest-platform .gallery-item:nth-child(2) {
    animation-delay: 0.2s;
}

.defi-invest-platform .gallery-item:nth-child(3) {
    animation-delay: 0.3s;
}

.defi-invest-platform .gallery-item:nth-child(4) {
    animation-delay: 0.4s;
}

.defi-invest-platform .gallery-item:nth-child(5) {
    animation-delay: 0.5s;
}

.defi-invest-platform .gallery-item:nth-child(6) {
    animation-delay: 0.6s;
}

.defi-invest-platform .gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.defi-invest-platform .gallery-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* 4:3 Aspect Ratio */
    overflow: hidden;
    background: var(--bg-light);
}

.defi-invest-platform .gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.defi-invest-platform .gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.defi-invest-platform .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(4, 105, 216, 0) 0%, rgba(4, 105, 216, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.defi-invest-platform .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.defi-invest-platform .gallery-content {
    width: 100%;
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.defi-invest-platform .gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.defi-invest-platform .gallery-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.defi-invest-platform .gallery-description {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.5;
}

.defi-invest-platform .gallery-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.defi-invest-platform .gallery-view-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(5px);
}

.defi-invest-platform .gallery-view-btn i {
    font-size: 1rem;
}

/* Lightbox Modal */
.gallery-lightbox,
.defi-invest-platform .gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-lightbox.active,
.defi-invest-platform .gallery-lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-overlay,
.defi-invest-platform .lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-content,
.defi-invest-platform .lightbox-content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.lightbox-content br {
  display: none;
}

.lightbox-image,
.defi-invest-platform .lightbox-image {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.4s ease-out;
}

.lightbox-image + p {
  display: none;
}

.lightbox-info,
.defi-invest-platform .lightbox-info {
    text-align: center;
    color: var(--white);
    max-width: 600px;
}

.lightbox-title,
.defi-invest-platform .lightbox-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.lightbox-description,
.defi-invest-platform .lightbox-description {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next,
.defi-invest-platform .lightbox-close,
.defi-invest-platform .lightbox-prev,
.defi-invest-platform .lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    padding-left: 0;
    padding-right: 0;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover,
.defi-invest-platform .lightbox-close:hover,
.defi-invest-platform .lightbox-prev:hover,
.defi-invest-platform .lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.lightbox-close,
.defi-invest-platform .lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev,
.defi-invest-platform .lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next,
.defi-invest-platform .lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover,
.lightbox-next:hover,
.defi-invest-platform .lightbox-prev:hover,
.defi-invest-platform .lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

.defi-invest-platform .cta {
    background: var(--gradient-1);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.defi-invest-platform .cta::before {
    content: '';
    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="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.defi-invest-platform .cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.defi-invest-platform .cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.defi-invest-platform .cta-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.defi-invest-platform .cta-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
}

.defi-invest-platform .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.defi-invest-platform .cta .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.defi-invest-platform .cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.defi-invest-platform .cta .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.defi-invest-platform .cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.defi-invest-platform .cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.defi-invest-platform .cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-weight: 500;
}

.defi-invest-platform .cta-feature i {
    font-size: 1.2rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}


@media (max-width: 1024px) {
    .defi-invest-platform .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow-md);
        transition: var(--transition);
        gap: 1rem;
    }
    
    .defi-invest-platform .nav-menu.active {
        left: 0;
    }
    
    .defi-invest-platform .nav-toggle {
        display: flex;
    }
    
    .defi-invest-platform .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(0px, 0px);
    }
    
    .defi-invest-platform .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .defi-invest-platform .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -7px);
    }
    
    .defi-invest-platform .hero-title {
        font-size: 2.8rem;
    }
    
    .defi-invest-platform .section-title {
        font-size: 2rem;
    }
    
    .defi-invest-platform .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .defi-invest-platform .step-item::after,
    .defi-invest-platform .step-item::before {
        display: none;
    }
    
    .defi-invest-platform .benefits-wrapper {
        grid-template-columns: 1fr;
    }
    
    .defi-invest-platform .videos-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .defi-invest-platform .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .defi-invest-platform .hero {
        padding: 100px 0 60px;
    }
    
    .defi-invest-platform .hero-title {
        font-size: 2rem;
    }
    
    .defi-invest-platform .hero-subtitle {
        font-size: 1rem;
    }
    
    .defi-invest-platform .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .defi-invest-platform .btn {
        width: 100%;
        justify-content: center;
    }
    
    .defi-invest-platform .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .defi-invest-platform .section {
        padding: 60px 0;
    }
    
    .defi-invest-platform .section-title {
        font-size: 1.8rem;
    }
    
    .defi-invest-platform .section-subtitle {
        font-size: 1rem;
    }
    
    .defi-invest-platform .features-grid,
    .defi-invest-platform .protection-grid {
        grid-template-columns: 1fr;
    }
    
    .defi-invest-platform .steps-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .defi-invest-platform .step-item {
        max-width: 100%;
    }
    
    .defi-invest-platform .step-item::after,
    .defi-invest-platform .step-item::before {
        display: none;
    }
    
    .defi-invest-platform .benefits-column {
        padding: 2rem;
    }
    
    .defi-invest-platform .benefit-header {
        flex-direction: column;
        text-align: center;
    }
    
    .defi-invest-platform .cta-title {
        font-size: 1.8rem;
    }
    
    .defi-invest-platform .cta-description {
        font-size: 1rem;
    }
    
    .defi-invest-platform .cta-buttons {
        flex-direction: column;
    }
    
    .defi-invest-platform .videos-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .defi-invest-platform .video-item {
        padding: 1.5rem;
    }
    
    .defi-invest-platform .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .defi-invest-platform .gallery-title {
        font-size: 1.3rem;
    }
    
    .defi-invest-platform .gallery-description {
        font-size: 0.9rem;
    }
    
    .defi-invest-platform .lightbox-prev,
    .defi-invest-platform .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .defi-invest-platform .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        top: 10px;
        right: 10px;
    }
    
    .defi-invest-platform .lightbox-title {
        font-size: 1.5rem;
    }
    
    .defi-invest-platform .lightbox-description {
        font-size: 1rem;
    }
    
    .defi-invest-platform .video-item-title {
        font-size: 1.3rem;
    }
    
    .defi-invest-platform .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .defi-invest-platform .hero-title {
        font-size: 1.75rem;
    }
    
    .defi-invest-platform .section-title {
        font-size: 1.5rem;
    }
    
    .defi-invest-platform .feature-card,
    .defi-invest-platform .protection-card,
    .defi-invest-platform .step-item {
        padding: 1.5rem;
    }
    
    .defi-invest-platform .benefits-column {
        padding: 1.5rem;
    }
    
    .defi-invest-platform .video-item {
        padding: 1.25rem;
    }
    
    .defi-invest-platform .video-item-title {
        font-size: 1.2rem;
    }
    
    .defi-invest-platform .video-item-subtitle {
        font-size: 0.9rem;
    }
    
    .defi-invest-platform .cta-title {
        font-size: 1.5rem;
    }
    
    .defi-invest-platform .gallery-grid {
        gap: 1rem;
    }
    
    .defi-invest-platform .gallery-overlay {
        padding: 1.5rem;
    }
    
    .defi-invest-platform .gallery-title {
        font-size: 1.2rem;
    }
    
    .defi-invest-platform .gallery-view-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .defi-invest-platform .lightbox-content {
        max-width: 95vw;
        padding: 1rem;
    }
    
    .defi-invest-platform .lightbox-image {
        max-height: 60vh;
    }
    
    .defi-invest-platform .lightbox-prev {
        left: 10px;
    }
    
    .defi-invest-platform .lightbox-next {
        right: 10px;
    }
}

.defi-invest-platform .scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    padding-right: 0;
    padding-left: 0;
}

.defi-invest-platform .scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.defi-invest-platform .scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(4, 105, 216, 0.3);
}

.defi-invest-platform .btn {
    position: relative;
    overflow: hidden;
}

.defi-invest-platform .btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.defi-invest-platform .nav-link.active {
    color: var(--primary-color);
}

.defi-invest-platform .nav-link.active::after {
    width: 100%;
}