.blogs-cta {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.blogs-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.blogs-cta-content {
    background: rgba(10, 15, 45, 0.8);
    border: 1px solid rgba(0, 255, 0, 0.2);
    border-radius: 24px;
    padding: 4rem;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Text Styles */
.blogs-cta-title {
    font-family: 'Gameria', sans-serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.blogs-cta-title span {
    display: inline-block;
}

.blogs-cta-title .cryptids-green {
    color: #00ff00;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.blogs-cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

/* App Store Buttons */
.blogs-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.blogs-cta-app-link {
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
}

.blogs-cta-app-link:hover {
    transform: translateY(-2px);
}

.blogs-cta-app-link:active {
    transform: translateY(0);
}

.blogs-cta-app-badge {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 255, 0, 0.2));
    transition: filter 0.3s ease;
}

.blogs-cta-app-link:hover .blogs-cta-app-badge {
    filter: drop-shadow(0 8px 16px rgba(0, 255, 0, 0.3));
}

/* Decorative Elements */
.blogs-cta-decoration {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
}

.blogs-cta-decoration.left {
    left: -50px;
}

.blogs-cta-decoration.right {
    right: -50px;
    transform: translateY(-50%) rotate(180deg);
}

.blogs-cta-orb {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 255, 0, 0.2) 0%, rgba(0, 255, 0, 0) 70%);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.blogs-cta-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 255, 0, 0.3) 0%, rgba(0, 255, 0, 0) 100%);
    transform-origin: left center;
    animation: rotate 10s linear infinite;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .blogs-cta {
        padding: 4rem 0;
    }

    .blogs-cta-content {
        padding: 2rem;
    }

    .blogs-cta-title {
        font-size: 2rem;
    }

    .blogs-cta-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .blogs-cta-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .blogs-cta-app-badge {
        height: 45px;
    }

    .blogs-cta-decoration {
        display: none;
    }
}
