/* ClickMagic Specific Styles */

/* Base Overrides for Dark Magic Theme */
body {
    background: radial-gradient(circle at center, #1e1b2e 0%, #050505 100%);
    color: #f3e8ff;
    font-family: 'Inter', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
    letter-spacing: -0.02em;
}







/* Button overrides for Magic Theme */
.btn-primary {
    background: linear-gradient(135deg, #8b5cf6 0%, #d946ef 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
}

.btn-outline {
    border: 1px solid rgba(167, 139, 250, 0.5);
    color: #e9d5ff;
}

.btn-outline:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: #c084fc;
    color: #fff;
}

/* Hero Section */
.hero-section {
    padding-top: 8rem;
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #d8b4fe);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.hero-actions .btn {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    border-radius: 99px;
    transition: all 0.2s;
}

.download-count {
    font-size: 0.9rem;
    color: #a78bfa;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(139, 92, 246, 0.1);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.hero-visual {
    margin-top: 3rem;
}

/* Screenshots / Visuals */
.screenshot-container {
    perspective: 1000px;
    max-width: 1000px;
    margin: 0 auto;
}

.screenshot-main {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 0 50px rgba(139, 92, 246, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: rotateX(5deg);
    transition: transform 0.5s ease;
}

.screenshot-container:hover .screenshot-main {
    transform: rotateX(0deg) scale(1.02);
}

/* Features */
.features-section {
    position: relative;
    background: rgba(5, 5, 10, 0.5);
}

.feature-block {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 8rem;
}

.feature-block.reverse {
    flex-direction: row-reverse;
}

@media(max-width: 900px) {

    .feature-block,
    .feature-block.reverse {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 5rem;
        text-align: center;
    }
}

.feature-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #e879f9;
}

.feature-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(139, 92, 246, 0.2);
    color: #c084fc;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.feature-details li {
    margin-bottom: 1rem;
    color: #e9d5ff;
    line-height: 1.6;
}

.feature-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.feature-image img:hover {
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3);
}

/* Use Cases */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.use-case-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 1rem;
    border-left: 3px solid #d946ef;
    transition: transform 0.3s;
}

.use-case-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.use-case-card h3 {
    margin-bottom: 1rem;
    color: #f0abfc;
}

/* Footer CTA */
.final-cta {
    background: linear-gradient(to top, #1e1b2e, rgba(0, 0, 0, 0));
}

.guarantee {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #a78bfa;
}

/* Animations */
@keyframes glow {
    0% {
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
    }

    50% {
        box-shadow: 0 0 30px rgba(217, 70, 239, 0.6);
    }

    100% {
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
    }
}

.btn-glow {
    animation: glow 3s infinite;
}

@media (max-width: 900px) {
    .split-reviews-layout {
        grid-template-columns: 1fr !important;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }
}