@font-face {
    font-family: 'Camera Obscura';
    src: url('../fonts/CameraObscuraDEMO.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

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

body {
    font-family: 'Comfortaa', cursive;
    background-color: #000000;
    color: #ffffff;
}

/* CTA Section */
.cta-section {
    background-color: #000000;
    padding: 250px 0;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.cta-title {
    color: #ffffff;
    font-family: 'Camera Obscura', 'Comfortaa', cursive;
    font-size: 60px;
    font-weight: 400;
    margin: 0;
    letter-spacing: 2px;
}

.cta-gradient {
    background: linear-gradient(90deg, #23BFD2, #6AC28F, #23BFD2, #6AC28F);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-flow 2s ease infinite;
}

@keyframes gradient-flow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@media (max-width: 992px) {
    .cta-section {
        padding: 200px 0;
        min-height: 70vh;
    }

    .cta-container {
        padding: 0 40px;
    }

    .cta-title {
        font-size: 64px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 150px 0;
        min-height: 60vh;
    }

    .cta-container {
        padding: 0 30px;
    }

    .cta-title {
        font-size: 48px;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 120px 0;
        min-height: 60vh;
    }

    .cta-container {
        padding: 0 20px;
    }

    .cta-title {
        font-size: 36px;
    }
}

/* Connected Section */
.connected-section {
    background-color: #FFFFFF;
    padding: 120px 0;
    text-align: center;
}

.connected-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.connected-title {
    color: #2C2C2C;
    font-family: 'Comfortaa', cursive;
    font-size: 70px;
    font-weight: 700;
    margin: 0 0 60px 0;
    letter-spacing: 1px;
    line-height: 1.3;
}

.connected-gradient {
    background: linear-gradient(90deg, #23BFD2, #6AC28F, #23BFD2, #6AC28F);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-flow 2s ease infinite;
    font-weight: 700;
    font-size: 1.1em;
    font-family: 'Camera Obscura', 'Comfortaa', cursive;
}

@keyframes gradient-flow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.connected-description {
    color: #666666;
    font-family: 'Comfortaa', cursive;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0 0 50px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.connected-button {
    display: inline-block;
    background: linear-gradient(90deg, #23BFD2, #6AC28F, #23BFD2, #6AC28F);
    background-size: 300% 100%;
    color: #000000;
    text-decoration: none;
    font-family: 'Comfortaa', cursive;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 50px;
    border-radius: 15px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    animation: gradient-flow 2s ease infinite;
}

.connected-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(35, 191, 210, 0.4);
}

.connected-button:active {
    transform: translateY(0);
}

@media (max-width: 992px) {
    .connected-section {
        padding: 100px 0;
    }

    .connected-container {
        padding: 0 40px;
    }

    .connected-title {
        font-size: 52px;
        margin-bottom: 50px;
    }

    .connected-description {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .connected-button {
        font-size: 16px;
        padding: 14px 45px;
    }
}

@media (max-width: 768px) {
    .connected-section {
        padding: 80px 0;
    }

    .connected-container {
        padding: 0 30px;
    }

    .connected-title {
        font-size: 40px;
        margin-bottom: 40px;
    }

    .connected-description {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .connected-section {
        padding: 60px 0;
    }

    .connected-container {
        padding: 0 20px;
    }

    .connected-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .connected-description {
        font-size: 14px;
    }

    .connected-button {
        font-size: 15px;
        padding: 14px 40px;
        width: 100%;
    }
}

* {
    scrollbar-width: thin;
    scrollbar-color: #23BFD2 #000000;
}