/* Poppins Font Family */
@font-face {
    font-family: 'Poppins BGW';
    src: url('ttf/poppins-regular.26f0cf10.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins BGW';
    src: url('ttf/poppins-semi-bold.2210fb42.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins BGW';
    src: url('ttf/poppins-bold.88d0f02a.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins BGW', sans-serif;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

/* Background Video */
.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

.fallback-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    right: 0;
    padding: 20px 40px;
    z-index: 1000;
}

.connect-wallet-btn {
    background: #ffffff;
    border: none;
    border-radius: 25px;
    padding: 12px 24px;
    font-family: 'Poppins BGW', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.connect-wallet-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.wallet-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 20px 50px;
}

/* Hero Section */
.hero {
    text-align: left;
    margin-bottom: 100px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-right: 40%;
    padding-left: 8%;
    padding-top: 1vh;
    min-height: 60vh;
}

.hero-title {
    font-family: 'Poppins BGW', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 50px;
    line-height: 55px;
    color: black;
    margin-bottom: 20px;
    text-align: left;
}

.morph-word {
    display: inline-block;
    margin-left: 0;
}

.hero-powered {
    font-family: 'Poppins BGW', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 10px;
    color: #00384a;
    margin-bottom: 15px;
    text-align: left;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-weight: 400;
    text-align: left;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 40px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* Connect Wallet Container Above Steps */
.connect-wallet-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    margin-top: -400px;
}

/* Connect Wallet Main Button */
.connect-wallet-main {
    background: #75E766;
    border: none;
    border-radius: 30px;
    padding: 16px 80px;
    font-family: 'Poppins BGW', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #0a0a0a;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(117, 231, 102, 0.3);
}

.connect-wallet-main:hover {
    background: #6DD45E;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(117, 231, 102, 0.5);
}


/* Steps Section */
.steps-section {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 100px;
    max-width: 1200px;
}

.step-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    width: 320px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.step-header {
    margin-bottom: 20px;
    text-align: left;
}

.step-number {
    font-family: 'Poppins BGW', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    color: #001f29;
}

.step-icon {
    margin: 20px 0;
}

.step-video {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
}

.icon-placeholder {
    font-size: 40px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(108, 255, 150, 0.1);
    border-radius: 15px;
    margin: 0 auto 20px;
    width: 80px;
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.4;
}

/* FAQ Section */
.faq-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 40px;
    max-width: 800px;
    width: 100%;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 30px;
    text-align: center;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    font-weight: 600;
    color: #1f2937;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #059669;
}

.faq-arrow {
    transition: transform 0.3s ease;
    color: #059669;
    font-size: 14px;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #6b7280;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 20px;
}

.faq-answer p {
    margin-bottom: 10px;
}

.faq-answer ul {
    margin-left: 20px;
    margin-top: 10px;
}

.faq-answer li {
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .steps-section {
        flex-direction: column;
        align-items: center;
    }
    
    .step-card {
        width: 100%;
        max-width: 350px;
    }
    
    .faq-section {
        margin: 0 20px;
        padding: 30px 20px;
    }
    
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .header {
        padding: 15px 20px;
    }
    
    .connect-wallet-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}
