@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1:wght@100..900&family=Michroma&family=Space+Grotesk:wght@300..700&display=swap');

/* Font Sets - Updated to use new fonts */
:root {
    --primary-color: #FFD700;
    --text-color: #333333; /* Changed from white to dark gray */
    --heading-font: 'Michroma', sans-serif;
    --body-font: 'M PLUS 1', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    color: #ffffff;
    background-color: #000000; /* Pure black background like nuovalanding */
    padding-top: env(safe-area-inset-top);
    min-height: -webkit-fill-available;
}

/* Clean dark background - no image */
.gradient-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000; /* Pure black like nuovalanding */
    z-index: -1;
}


/* Adjust scroll padding to account for fixed nav */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Slightly more than nav height */
    height: -webkit-fill-available;
}

/* Background Video */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh; /* Fallback */
    height: 100dvh; /* Modern browsers */
    z-index: -1;
    margin-top: calc(0px - env(safe-area-inset-top)); /* iOS notch */
    margin-top: calc(0px - constant(safe-area-inset-top)); /* iOS fallback */
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* For Android browsers that support display-cutout */
@supports (padding-top: env(safe-area-inset-top)) {
    .video-background {
        padding-top: env(safe-area-inset-top);
        height: calc(100vh + env(safe-area-inset-top));
    }
}

/* For older Android browsers */
@supports not (padding-top: env(safe-area-inset-top)) {
    .video-background {
        height: 100vh;
    }
}



/* Auth Container - 20% smaller */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
    padding: 1.6rem 0.8rem; /* 20% smaller */
    position: relative;
    margin-top: 0;
}

/* Auth Card - Dark theme with opacity for background visibility */
.auth-card {
    background: rgba(0, 0, 0, 0.4); /* Black with low opacity for background visibility */
    border-radius: 12px; /* Slightly smaller radius */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    width: 100%;
    max-width: 368px; /* 20% smaller (460px * 0.8) */
    padding: 2rem 1.6rem; /* 20% smaller */
    text-align: left;
    margin: auto;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #ffffff; /* White text for dark theme */
}

/* Logo container - Smaller and centered */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.2rem; /* 20% smaller */
    text-align: center;
}

.logo {
    height: 96px; /* 3 times bigger (32px * 3) */
    margin-bottom: 0.4rem; /* 20% smaller */
    display: block;
}


/* Modern titles and typography - 20% smaller */
.auth-title {
    font-size: 1.6rem; /* 20% smaller (2rem * 0.8) */
    font-weight: 600;
    color: #ffffff; /* White for dark theme */
    text-align: center;
    margin: 0 0 1.6rem 0; /* 20% smaller */
    font-family: var(--body-font);
}

/* Auth Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-overlay);
    z-index: -1;
    margin-top: calc(0px - env(safe-area-inset-top));
    margin-top: calc(0px - constant(safe-area-inset-top)); /* iOS fallback */
}


.auth-card {
    background: rgba(255, 255, 255, 0.05); /* Glass morphism like feature-card */
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    width: 100%;
    max-width: 368px; /* 20% smaller */
    padding: 2rem 1.6rem; /* 20% smaller */
    text-align: left;
    margin: auto;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #ffffff;
}

/* Ensure all headings have dark text */
.auth-card h1, .auth-card h2, .auth-card h3, .auth-card h4, .auth-card h5, .auth-card h6 {
    color: #ffffff;
    margin-bottom: 1rem;
}

/* Modern tab styling - 20% smaller, dark theme */
.auth-tabs {
    display: flex;
    margin-bottom: 1.6rem; /* 20% smaller */
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px; /* 20% smaller */
    padding: 3px; /* 20% smaller */
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.auth-tab {
    flex: 1;
    background: none;
    border: none;
    padding: 0.6rem 0.8rem; /* 20% smaller */
    font-size: 0.8rem; /* 20% smaller */
    font-weight: 500;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s ease;
    border-radius: 5px; /* Slightly smaller */
    font-family: var(--body-font);
}

.auth-tab.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    font-weight: 600;
}

.auth-tab:hover:not(.active) {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
}

.auth-content {
    transition: all 0.3s ease;
}

.hidden {
    display: none;
}

/* Error message styling */
.auth-error {
    background-color: rgba(219, 68, 55, 0.1);
    border: 1px solid #DB4437;
    border-left: 4px solid #DB4437;
    padding: 12px 15px;
    margin: 0 10px 20px 10px;
    border-radius: 4px;
    text-align: left;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.auth-error p {
    color: #DB4437;
    font-size: 14px;
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
}

/* Modern form styling - 20% smaller, dark theme */
.auth-form .form-group {
    margin-bottom: 1.2rem; /* 20% smaller */
}

.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="text"],
.auth-form select {
    width: 100%;
    padding: 0.7rem 0.8rem; /* 20% smaller */
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px; /* 20% smaller */
    font-size: 0.8rem; /* 20% smaller */
    font-family: var(--body-font);
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.auth-form input:focus,
.auth-form select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
    background-color: rgba(255, 255, 255, 0.08);
}

.auth-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.auth-form select option {
    background-color: #2d2d2d;
    color: #ffffff;
}

.form-label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-bottom: 6px; /* 20% smaller */
    text-align: left;
    font-size: 0.6rem; /* 20% smaller */
    text-transform: uppercase;
    letter-spacing: 0.4px; /* 20% smaller */
    font-family: var(--body-font);
}

/* Form row for side-by-side fields - 20% smaller */
.form-row {
    display: flex;
    gap: 0.8rem; /* 20% smaller */
    margin-bottom: 1.2rem; /* 20% smaller */
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-value {
    display: block;
    text-align: left;
    padding: 0.5rem;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 5px;
    color: #333333;
    margin-bottom: 0.5rem;
}

.form-hint {
    display: block;
    text-align: left;
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.2rem;
}

/* Modern button styling - 20% smaller, dark theme */
.auth-button {
    width: 100%;
    padding: 0.7rem 1.2rem; /* 20% smaller */
    border: none;
    border-radius: 6px; /* 20% smaller */
    font-size: 0.8rem; /* 20% smaller */
    font-weight: 600;
    font-family: var(--body-font);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    box-sizing: border-box;
}

.auth-button.primary {
    background: linear-gradient(135deg, #ff6b35, #ffd700); /* Match nuovalanding */
    color: #000000; /* Black text like nuovalanding */
    margin-top: 1.2rem; /* 20% smaller */
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.auth-button.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4); /* Match nuovalanding */
}

/* Radio button styling - 20% smaller, dark theme */
.radio-group {
    display: flex;
    gap: 1.2rem; /* 20% smaller */
    margin-top: 0.4rem; /* 20% smaller */
}

.radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.8rem; /* 20% smaller */
    color: rgba(255, 255, 255, 0.9);
}

.radio-option input[type="radio"] {
    width: 16px; /* 20% smaller */
    height: 16px; /* 20% smaller */
    margin-right: 0.4rem; /* 20% smaller */
    cursor: pointer;
}

/* Checkbox styling - 20% smaller, dark theme */
.checkbox-group {
    margin: 1.2rem 0; /* 20% smaller */
}

.checkbox-option {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.72rem; /* 20% smaller */
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.8rem; /* 20% smaller */
    line-height: 1.4;
}

.checkbox-option input[type="checkbox"] {
    width: 14px; /* 20% smaller */
    height: 14px; /* 20% smaller */
    margin-right: 0.6rem; /* 20% smaller */
    margin-top: 0.1rem;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-option a {
    color: #8fa3ff;
    text-decoration: none;
}

.checkbox-option a:hover {
    text-decoration: underline;
}

/* Quick access and social buttons - 20% smaller, dark theme */
.quick-access, .quick-registration {
    margin: 1.6rem 0; /* 20% smaller */
}

.quick-access-title {
    font-size: 0.8rem; /* 20% smaller */
    font-weight: 600;
    color: #ffffff; /* Pure white */
    margin-bottom: 0.8rem; /* 20% smaller */
    text-align: center;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.7rem 0.8rem; /* 20% smaller */
    border-radius: 6px; /* 20% smaller */
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8rem; /* 20% smaller */
    transition: all 0.2s ease;
    border: 2px solid transparent;
    box-sizing: border-box;
    margin-bottom: 0.6rem; /* 20% smaller */
}

.social-button.ethereum {
    background: transparent; /* Match nuovalanding secondary button */
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.social-button.ethereum:hover {
    background: rgba(255, 255, 255, 0.1); /* Match nuovalanding secondary button */
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

.ethereum-icon {
    font-size: 1rem; /* 20% smaller */
    margin-right: 0.6rem; /* 20% smaller */
    color: #8fa3ff;
}

/* Section headers for collapsible sections - 20% smaller, dark theme */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem; /* 20% smaller */
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px; /* 20% smaller */
    cursor: pointer;
    margin-bottom: 1.8rem; /* 20% smaller */
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: background-color 0.2s ease;
}

.section-header:hover {
    background: rgba(255, 255, 255, 0.12);
}

.section-header h3 {
    margin: 0;
    font-size: 0.8rem; /* 20% smaller */
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.toggle-arrow {
    font-size: 0.7rem; /* 20% smaller */
    color: #8fa3ff;
    font-weight: bold;
}

.forgot-password {
    margin-top: 0.8rem; /* 20% smaller */
    text-align: center;
    font-size: 0.72rem; /* 20% smaller */
}

.forgot-password a {
    color: #8fa3ff;
    text-decoration: none;
}

.forgot-password a:hover {
    text-decoration: underline;
}

/* Register and login prompts - 20% smaller, dark theme */
.register-prompt, .login-prompt {
    margin-top: 1.6rem; /* 20% smaller */
    text-align: center;
    font-size: 0.72rem; /* 20% smaller */
    color: rgba(255, 255, 255, 0.6);
}

.register-prompt a, .login-prompt a {
    color: #8fa3ff;
    text-decoration: none;
    font-weight: 500;
}

.register-prompt a:hover, .login-prompt a:hover {
    text-decoration: underline;
}

.social-auth {
    margin-top: 2rem;
}

.social-auth p {
    margin-bottom: 1rem;
    color: #555;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem;
    border-radius: 5px;
    text-decoration: none;
    color: white; /* Keep white text for social buttons */
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.social-button:hover {
    opacity: 0.9;
}

.social-button img {
    height: 24px;
    margin-right: 10px;
}

.google {
    background: #DB4437;
}

.facebook {
    background: #4267B2;
}

.register-message {
    margin-bottom: 2rem;
    color: #555;
}


/* Back to Home Button - 20% smaller */
.back-home-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.24rem; /* 20% smaller */
    text-decoration: none;
    color: white;
    background: rgba(117, 117, 117, 0.8);
    border: none;
    border-radius: 4px; /* 20% smaller */
    font-size: 0.8rem; /* 20% smaller */
    transition: background 0.3s ease;
    margin-bottom: 1.6rem; /* 20% smaller */
    margin-top: 1.6rem; /* 20% smaller */
}

.back-home-button span {
    margin-right: 10px;
}

.back-home-button svg {
    transition: transform 0.3s ease;
}

.back-home-button:hover {
    background: #333;
}

.back-home-button:hover svg {
    transform: translateX(5px);
}

/* Text button style for resend code button - 20% smaller, dark theme */
.text-button {
    background: none;
    border: none;
    color: #8fa3ff;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.72rem; /* 20% smaller */
    padding: 0;
    margin: 0;
}

.text-button:hover {
    color: #7c93ff;
}

/* Message styles */
.message {
    background-color: rgba(0, 150, 90, 0.1);
    border: 1px solid #00965a;
    border-left: 4px solid #00965a;
    padding: 12px 15px;
    margin: 0 10px 20px 10px;
    border-radius: 4px;
    text-align: left;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.message p {
    color: #00965a;
    font-size: 14px;
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
}

/* Resend code section - 20% smaller, dark theme */
.resend-code {
    margin-top: 1.2rem; /* 20% smaller */
    padding-top: 0.8rem; /* 20% smaller */
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.72rem; /* 20% smaller */
}

/* Form check for terms and conditions */
.form-check {
    display: flex;
    align-items: start;
    margin-bottom: 1.2rem;
    text-align: left;
}

.form-check input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-top: 4px;
}

.form-check label {
    font-size: 0.9rem;
    color: #555;
}

.form-check a {
    color: #6225E6;
    text-decoration: none;
}

.form-check a:hover {
    text-decoration: underline;
}

/* Login link styling */
.login-link {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #555;
}

.login-link a {
    color: #6225E6;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .auth-container {
        padding: 0.8rem; /* 20% smaller */
    }

    .auth-card {
        padding: 1.2rem 0.8rem; /* 20% smaller */
    }

    /* Update back-home-button positioning - 20% smaller */
    .back-home-button {
        margin-top: 1.2rem; /* 20% smaller */
        margin-bottom: 0.8rem; /* 20% smaller */
    }
}

/* For devices with notches/safe areas - 20% smaller */
@supports (padding: env(safe-area-inset-top)) {
    .auth-container {
        padding-top: calc(1.6rem + env(safe-area-inset-top)); /* 20% smaller */
        padding-bottom: calc(1.6rem + env(safe-area-inset-bottom)); /* 20% smaller */
    }
}


/* Responsive styles for back button - 20% smaller */
@media (max-width: 768px) {
    .back-home-button {
        padding: 6px 16px; /* 20% smaller */
        font-size: 11px; /* 20% smaller */
    }
    
    .back-home-button svg {
        width: 22px; /* 20% smaller */
        height: 22px; /* 20% smaller */
    }
}

/* Verification code styling */
.verification-code-display {
    font-size: 24px;
    font-weight: bold;
    color: #333333;
    background: #f5f5f5;
    padding: 10px;
    border-radius: 5px;
    letter-spacing: 2px;
    margin: 15px 0;
    border: 1px dashed #6225E6;
}
/* ===============================================
   GESTORE TYPE SELECTION MODAL
   =============================================== */

/* Modal Container */
.gestore-modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Overlay Background */
.gestore-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Modal Content */
.gestore-modal-content {
    position: relative;
    z-index: 10000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 1px rgba(255, 255, 255, 0.3) inset;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Close Button */
.gestore-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.gestore-modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

/* Modal Title */
.gestore-modal-title {
    font-family: var(--heading-font);
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 10px;
    text-align: center;
}

.gestore-modal-subtitle {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 35px;
}

/* Gestore Type Options Container */
.gestore-type-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* Gestore Type Card */
.gestore-type-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(98, 37, 230, 0.2);
    border-radius: 16px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.gestore-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(98, 37, 230, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gestore-type-card:hover {
    transform: translateY(-5px);
    border-color: rgba(98, 37, 230, 0.6);
    box-shadow: 0 10px 30px rgba(98, 37, 230, 0.2),
                0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.gestore-type-card:hover::before {
    opacity: 1;
}

.gestore-type-card:active {
    transform: translateY(-2px) scale(0.98);
}

/* Card Icon */
.gestore-card-icon {
    font-size: 48px;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Card Title */
.gestore-card-title {
    font-family: var(--heading-font);
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 12px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Card Description */
.gestore-card-description {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Card Examples */
.gestore-card-examples {
    font-size: 13px;
    color: #666;
    background: rgba(98, 37, 230, 0.05);
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.gestore-card-examples strong {
    color: #6225E6;
    font-weight: 600;
}

/* Dark Theme Support */
:root:not(.theme-light) .gestore-modal-content {
    background: rgba(30, 30, 30, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

:root:not(.theme-light) .gestore-modal-title {
    color: #ffffff;
}

:root:not(.theme-light) .gestore-modal-subtitle {
    color: #aaa;
}

:root:not(.theme-light) .gestore-type-card {
    background: rgba(40, 40, 40, 0.8);
    border-color: rgba(98, 37, 230, 0.3);
}

:root:not(.theme-light) .gestore-card-title {
    color: #ffffff;
}

:root:not(.theme-light) .gestore-card-description {
    color: #ccc;
}

:root:not(.theme-light) .gestore-card-examples {
    background: rgba(98, 37, 230, 0.15);
    color: #bbb;
}

:root:not(.theme-light) .gestore-modal-close {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

:root:not(.theme-light) .gestore-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .gestore-modal-content {
        padding: 30px 20px;
        max-width: 95%;
    }

    .gestore-modal-title {
        font-size: 22px;
    }

    .gestore-modal-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .gestore-type-card {
        padding: 20px;
    }

    .gestore-card-icon {
        font-size: 40px;
    }

    .gestore-card-title {
        font-size: 19px;
    }

    .gestore-card-description {
        font-size: 14px;
    }

    .gestore-card-examples {
        font-size: 12px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .gestore-modal {
        padding: 10px;
    }

    .gestore-modal-content {
        padding: 25px 15px;
        border-radius: 15px;
    }

    .gestore-modal-title {
        font-size: 20px;
    }

    .gestore-type-card {
        padding: 18px;
    }

    .gestore-card-icon {
        font-size: 36px;
        margin-bottom: 10px;
    }
}
