﻿/* global.css */

body {
    background: linear-gradient(120deg, #f7fbfc 0%, #e4fafd 100%);
    color: #222;
    font-family: 'Bruta Pro', 'Segoe UI', Arial, sans-serif;
    min-height: 100vh;
}

.navbar {
    background: #fff !important;
    box-shadow: 0 2px 24px 0 rgba(5,146,202,0.08);
}

.navbar-brand, .nav-link, .footer {
    color: #0592CA !important;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.report-btn {
    background: linear-gradient(90deg,#00FEFE 0%, #0592CA 80%);
    color: #fff !important;
    border: none;
    font-weight: bold;
    border-radius: 2em;
    transition: background 0.3s, color 0.3s, box-shadow 0.2s;
    box-shadow: 0 4px 24px 0 rgba(0,254,254,0.14);
}

    .report-btn:hover {
        background: #00FEFE;
        color: #0592CA !important;
        box-shadow: 0 8px 24px 0 rgba(0,254,254,0.22);
    }

.howto-card {
    background: rgba(255,255,255,0.98);
    border-radius: 22px;
    box-shadow: 0 8px 44px 0 rgba(5,146,202,0.11);
    padding: 2.4rem 2rem 2rem 2rem;
    margin: 2rem auto;
    max-width: 540px;
    border: 1.5px solid #e4fafd;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.2rem;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

    .step:last-child {
        margin-bottom: 0;
    }

.step-number {
    min-width: 48px;
    min-height: 48px;
    background: linear-gradient(135deg, #00FEFE, #0592CA 80%);
    color: #fff;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.2rem;
    box-shadow: 0 2px 12px 0 rgba(0,254,254,0.14);
}

.step-content {
    flex: 1;
    min-width: 0;
}

.step-title {
    font-size: 1.19rem;
    font-weight: 700;
    color: #0592CA;
    margin-bottom: 0.18rem;
    font-family: 'Bruta Pro', 'Segoe UI', Arial, sans-serif;
}

.step-description {
    font-size: 1.04rem;
    color: #333;
}

.step-anim {
    margin-left: 0.7rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wonderful {
    text-align: center;
    font-size: 2.7rem;
    font-weight: 900;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #0592CA 30%, #00FEFE 75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.3rem;
    font-family: 'Bruta Pro', 'Segoe UI', Arial, sans-serif;
}

.footer {
    background: #f7fbfc;
    color: #0592CA !important;
    border-top: 2px solid #e4fafd;
    text-align: center;
    padding: 1.2rem 0 0.6rem 0;
    margin-top: 4rem;
    font-family: 'Bruta Pro', 'Segoe UI', Arial, sans-serif;
}

.animated-arrow {
    font-size: 2.0rem;
    color: #00FEFE;
    animation: bounce 1.3s infinite alternate;
    margin: 0 0.8rem;
    vertical-align: middle;
}

.howto-visual {
    width: 86px;
    height: 86px;
    margin-right: 1.2rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .howto-card {
        padding: 1.2rem 0.3rem 1.2rem 0.3rem;
    }

    .step-title {
        font-size: 1.04rem;
    }

    .step-description {
        font-size: 0.97rem;
    }

    .wonderful {
        font-size: 2rem;
    }

    .step-number {
        font-size: 1.4rem;
        min-width: 36px;
        min-height: 36px;
    }

    .howto-visual {
        width: 62px;
        height: 62px;
        margin-right: 0.7rem;
    }
}

/* Privacy Modal Styling */
#privacyModal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.45);
}

    #privacyModal .privacy-card {
        max-width: 540px;
        margin: 7vh auto;
        position: relative;
        background: rgba(255,255,255,0.98);
        border-radius: 22px;
        box-shadow: 0 8px 44px 0 rgba(5,146,202,0.11);
        padding: 2.4rem 2rem 2rem 2rem;
    }

    #privacyModal .wonderful {
        text-align: center;
        font-size: 2rem;
        font-weight: 900;
        margin-bottom: 1.2rem;
    }

    #privacyModal .privacy-section-title {
        font-size: 1.15rem;
        font-weight: 700;
        color: #0592CA;
        margin-top: 1.7rem;
        margin-bottom: 0.7rem;
    }

    #privacyModal .privacy-content {
        max-height: 49vh;
        overflow-y: auto;
        margin-bottom: 1.7rem;
    }
