/* MyMatchMix - World Cup 2026 */
/* Mobile-first responsive design */

:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #e94560;
    --gold: #f5c518;
    --light: #f0f0f0;
    --white: #ffffff;
    --text: #1a1a2e;
    --text-light: #666;
    --radius: 12px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --nav-height: 60px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    color: var(--text);
    padding-top: var(--nav-height);
}

/* =============================================
   SITE NAVIGATION
   ============================================= */

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(26, 26, 46, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
}

.nav-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo img {
    height: 28px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 4px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-links a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.nav-links a.active {
    color: var(--white);
    background: rgba(233, 69, 96, 0.2);
    font-weight: 600;
}

/* Hamburger toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 8px 20px 20px;
        gap: 2px;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links a {
        padding: 12px 14px;
        font-size: 1rem;
    }
}

/* =============================================
   APP CONTAINER & HEADER
   ============================================= */

.app-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* App-specific header (index page) */
.app-header {
    text-align: center;
    padding: 24px 0 20px;
    color: var(--white);
}

/* Animated Shield Logo */
.animated-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}
.shield-logo {
    width: 56px;
    height: 56px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}
.shield-star {
    animation: starPulse 3s ease-in-out infinite;
    transform-origin: 32px 20px;
}
.split-line {
    animation: lineShimmer 3s ease-in-out infinite;
}
@keyframes starPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.15); opacity: 0.8; }
}
@keyframes lineShimmer {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.5; }
}

.app-header h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.app-header .subtitle {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 500;
}

/* =============================================
   PAGE LAYOUT (for content pages)
   ============================================= */

.page-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 20px;
}

.page-header {
    text-align: center;
    padding: 40px 0 30px;
    color: var(--white);
}

.page-header h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.page-header p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.page-content {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    line-height: 1.7;
    color: var(--text);
}

.page-content h2 {
    font-size: 1.3rem;
    color: var(--primary);
    margin: 28px 0 12px;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--light);
}

.page-content h2:first-child {
    margin-top: 0;
}

.page-content h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin: 20px 0 8px;
}

.page-content p {
    margin-bottom: 14px;
    font-size: 0.95rem;
}

.page-content ul, .page-content ol {
    margin: 0 0 14px 20px;
}

.page-content li {
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.page-content a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.page-content a:hover {
    text-decoration: underline;
}

.page-content .highlight-box {
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.08), rgba(245, 197, 24, 0.08));
    border-left: 4px solid var(--accent);
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
    margin: 20px 0;
}

.page-content .highlight-box p {
    margin-bottom: 0;
}

/* Steps / How it works */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.step {
    text-align: center;
    padding: 20px 12px;
    background: var(--light);
    border-radius: var(--radius);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: var(--white);
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 50%;
    margin-bottom: 10px;
}

.step h3 {
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: var(--primary);
}

.step p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .steps {
        grid-template-columns: 1fr;
    }
}

/* FAQ accordion */
.faq-item {
    border-bottom: 1px solid var(--light);
    padding: 16px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.faq-item.open .faq-question::after {
    content: '\2212';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding-top: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

.form-group input,
.form-group textarea {
    padding: 10px 14px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    display: inline-block;
    padding: 12px 28px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    align-self: flex-start;
}

.form-submit:hover {
    background: #d63051;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.4);
}

/* 404 page */
.error-page {
    text-align: center;
    padding: 60px 20px;
}

.error-code {
    font-size: 6rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
}

.error-page p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.error-page a {
    display: inline-block;
    padding: 12px 28px;
    background: var(--accent);
    color: var(--white);
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.error-page a:hover {
    background: #d63051;
    transform: translateY(-1px);
}

/* =============================================
   SITE FOOTER
   ============================================= */

.site-footer {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
}

.footer-brand p {
    margin-top: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

.footer-brand img {
    height: 24px;
    opacity: 0.7;
}

.footer-links h4 {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 3px 0;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1000px;
    margin: 0 auto;
    padding: 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
}

@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
}

/* =============================================
   MOBILE STEPPER
   ============================================= */

.mobile-stepper {
    display: none; /* Hidden on desktop */
}

@media (max-width: 768px) {
    .mobile-stepper {
        display: block;
        margin-bottom: 16px;
    }

    .stepper-steps {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0;
        padding: 12px 16px;
        background: rgba(255, 255, 255, 0.06);
        border-radius: var(--radius);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .stepper-step {
        display: flex;
        align-items: center;
        gap: 6px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 6px 10px;
        border-radius: 20px;
        transition: all 0.25s ease;
        flex-shrink: 0;
    }

    .step-num {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        font-size: 0.8rem;
        font-weight: 800;
        background: rgba(255, 255, 255, 0.12);
        color: rgba(255, 255, 255, 0.4);
        transition: all 0.25s ease;
    }

    .step-text {
        font-size: 0.75rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.4);
        transition: all 0.25s ease;
    }

    .stepper-step.active .step-num {
        background: var(--accent);
        color: var(--white);
        box-shadow: 0 2px 8px rgba(233, 69, 96, 0.4);
    }

    .stepper-step.active .step-text {
        color: var(--white);
    }

    .stepper-step.completed .step-num {
        background: #2ecc71;
        color: var(--white);
    }

    .stepper-step.completed .step-text {
        color: rgba(255, 255, 255, 0.7);
    }

    .stepper-line {
        flex: 1;
        height: 2px;
        background: rgba(255, 255, 255, 0.12);
        margin: 0 4px;
        min-width: 20px;
        border-radius: 1px;
        transition: background 0.25s ease;
    }

    .stepper-line.completed {
        background: #2ecc71;
    }

    /* Mobile step visibility */
    [data-mobile-step] {
        display: none;
    }

    [data-mobile-step].mobile-active {
        display: block;
        animation: stepFadeIn 0.25s ease;
    }

    /* Result panel needs special handling - only show when visible class AND mobile-active */
    .result-panel[data-mobile-step].mobile-active {
        display: none;
    }

    .result-panel.visible[data-mobile-step].mobile-active {
        display: block;
    }

    /* When on step 3 but no flags selected yet, show controls anyway */
    .split-controls[data-mobile-step].mobile-active {
        display: block;
    }

    @keyframes stepFadeIn {
        from { opacity: 0; transform: translateY(8px); }
        to   { opacity: 1; transform: translateY(0); }
    }
}

/* =============================================
   SELECTION PANEL (App - index.html)
   ============================================= */

.selection-panel {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    margin-bottom: 30px;
    align-items: start;
}

@media (max-width: 768px) {
    .selection-panel {
        grid-template-columns: 1fr;
    }
}

.flag-picker {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
}

.flag-picker h2 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--primary);
}

.flag-picker .hint {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 14px;
}

/* Flag Search */
.flag-search {
    width: 100%;
    padding: 8px 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-bottom: 10px;
    outline: none;
    transition: border-color 0.2s ease;
    font-family: inherit;
}

.flag-search:focus {
    border-color: var(--accent);
}

.flag-search::placeholder {
    color: #aaa;
}

/* Flag Grid */
.flag-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 14px;
    max-height: 320px;
    overflow-y: auto;
    padding-right: 4px;
}

/* Scrollbar styling */
.flag-grid::-webkit-scrollbar {
    width: 5px;
}

.flag-grid::-webkit-scrollbar-track {
    background: transparent;
}

.flag-grid::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.flag-grid::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

.flag-card {
    cursor: pointer;
    border: 3px solid transparent;
    border-radius: 8px;
    padding: 6px;
    text-align: center;
    transition: all 0.2s ease;
    background: var(--light);
}

.flag-card:hover {
    border-color: var(--accent);
    transform: scale(1.05);
}

.flag-card.selected {
    border-color: var(--accent);
    background: #fce4ec;
}

.flag-card.disabled {
    opacity: 0.3;
    pointer-events: none;
}

.flag-card.hidden {
    display: none;
}

.flag-card-img {
    position: relative;
    width: 100%;
    padding-bottom: 66.67%;   /* force 3:2 box before image loads */
    overflow: hidden;
    border-radius: 4px;
    background: #e0e0e0;
}

.flag-card-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.flag-card .country-name {
    font-size: 0.65rem;
    font-weight: 600;
    margin-top: 4px;
    color: var(--text);
    line-height: 1.2;
}

/* Selected Team Display */
.selected-team {
    background: var(--light);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
}

.selected-team .selected-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
}

.selected-team.has-selection .selected-label {
    color: var(--accent);
}

/* =============================================
   SPLIT CONTROLS (center column)
   ============================================= */

.split-controls {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    align-self: center;
    min-width: 180px;
}

.control-group {
    margin-bottom: 18px;
}

.control-group:last-child {
    margin-bottom: 0;
}

.control-group h2 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--primary);
}

/* Ratio Slider */
.slider-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.slider-label-left,
.slider-label-right {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    min-width: 32px;
    text-align: center;
}

.ratio-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(to right, var(--accent), var(--primary));
    outline: none;
    cursor: pointer;
}

.ratio-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--accent);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.ratio-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--accent);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.ratio-description {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Angle Buttons */
.angle-buttons {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 6px;
}

.angle-btn {
    width: 44px;
    height: 44px;
    border: 2px solid var(--primary);
    background: var(--white);
    border-radius: 8px;
    font-size: 1.4rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.angle-btn:hover {
    background: var(--light);
}

.angle-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.angle-suggestion {
    font-size: 0.7rem;
    color: var(--accent);
    font-weight: 600;
    min-height: 1.2em;
}

/* Line Style Buttons */
.style-buttons {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-bottom: 6px;
}

.style-btn {
    width: 44px;
    height: 44px;
    border: 2px solid var(--primary);
    background: var(--white);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.style-btn:hover {
    background: var(--light);
}

.style-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

/* =============================================
   RESULT PANEL
   ============================================= */

.result-panel {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    display: none;
}

.result-panel.visible {
    display: block;
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.result-panel h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.canvas-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

#flagCanvas {
    border: 3px solid var(--primary);
    border-radius: 8px;
    max-width: 100%;
    height: auto;
}

/* Flag Info */
.flag-info {
    padding: 16px;
    background: var(--light);
    border-radius: 8px;
}

.flag-info .info-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.flag-info .info-item {
    font-size: 0.9rem;
    font-weight: 600;
}

.flag-info .info-item.country1 {
    color: var(--accent);
}

.flag-info .info-item.country2 {
    color: var(--primary);
}

.flag-info .info-item.ratio {
    background: var(--primary);
    color: var(--gold);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Download Button */
.download-btn {
    display: inline-block;
    margin-top: 16px;
    padding: 12px 28px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.download-btn:hover {
    background: #d63051;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.4);
}

.download-btn:active {
    transform: translateY(0);
}

/* Share Bar */
.share-bar {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.share-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.share-buttons {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text);
}

.share-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.share-btn.whatsapp:hover {
    border-color: #25d366;
    color: #25d366;
}

.share-btn.twitter:hover {
    border-color: #1d9bf0;
    color: #1d9bf0;
}

.share-btn.copy-link:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.share-btn.copy-link.copied {
    border-color: #2ecc71;
    color: #2ecc71;
    background: #f0fdf4;
}

/* =============================================
   UTILITY CLASSES
   ============================================= */

/* Compatibility Warning */
.compatibility-warning {
    margin-top: 12px;
    padding: 10px 16px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.compatibility-warning .warning-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.compatibility-warning .warning-text {
    font-size: 0.8rem;
    color: #664d03;
    line-height: 1.4;
}

/* Smart suggestion (blue hint) */
.angle-suggestion-hint {
    margin-top: 12px;
    padding: 10px 16px;
    background: #d1ecf1;
    border: 1px solid #0dcaf0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.angle-suggestion-hint .hint-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.angle-suggestion-hint .hint-text {
    font-size: 0.8rem;
    color: #055160;
    line-height: 1.4;
}
