/* CSS Variables */
:root {
    --bg: #faf8f5;
    --bg-alt: #f5f3f0;
    --accent: #0FB85A;
    --accent-soft: #14E06E;
    --accent-dark: #0A9A4A;
    --text: #2a2a2a;
    --muted: #5a5a5a;
    --card-bg: #ffffff;
    --border: #e0e0e0;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.15);
    --font-header: 'Fredoka', cursive;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Skip to main content link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header and Navigation */
header {
    background-color: var(--bg-alt);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px var(--shadow);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--text);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    height: 40px;
    width: auto;
}

.company-name {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-logo {
    height: 100px;
    width: auto;
    display: block;
}

.logo-reassurance {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    width: 100%;
}

.logo-reassurance .cta-text {
    flex: 1;
    min-width: 200px;
}

.signup-form .cta-header {
    margin-bottom: 1.5rem;
}

.cta-header {
    font-family: var(--font-header);
    font-size: 2rem;
    color: var(--accent);
    margin: 0 0 1.5rem 0;
    font-weight: 700;
    text-align: center;
    width: 100%;
}

.logo-reassurance .form-reassurance {
    margin: 0;
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.4;
    font-weight: 600;
}

.hero h1 {
    font-family: var(--font-header);
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
    font-weight: 700;
}

.tagline {
    font-size: 1.5rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--muted);
}

.hero-main-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
    align-items: start;
}

.signup-form {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Center and stack the second signup form */
#get-updates .signup-form {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}

#get-updates .signup-form .seva-fields {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

#get-updates .signup-form .formkit-field {
    width: 100%;
}

#get-updates .signup-form .formkit-input {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    background-color: white;
    color: var(--text);
    transition: border-color 0.3s ease;
}

#get-updates .signup-form .formkit-input:focus {
    outline: none;
    border-color: var(--accent);
}

#get-updates .signup-form .formkit-submit {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 100%;
    width: 100%;
    margin: 0 auto 0.5rem;
}

.signup-form input[type="email"] {
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    background-color: white;
    color: var(--text);
    transition: border-color 0.3s ease;
}

.signup-form input[type="email"]:focus {
    outline: none;
    border-color: var(--accent);
}

.form-reassurance {
    font-size: 1.1rem;
    color: var(--muted);
    margin-top: 0.5rem;
    font-weight: 600;
}

/* Game Box Info */
.game-box-info {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.game-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    background-color: white;
    border-radius: 8px;
    border: 4px solid var(--accent);
    box-shadow: 0 2px 8px var(--shadow);
    min-width: 100px;
}

.game-info-text {
    font-size: 0.75rem;
    color: var(--text);
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    font-family: var(--font-body);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.game-info-text .number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    font-family: var(--font-header);
    line-height: 1.2;
}

.launch-note {
    margin-top: 2rem;
    font-size: 1rem;
    color: var(--accent);
    font-weight: 500;
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: var(--accent);
    color: white;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 184, 90, 0.3);
}

.btn-secondary {
    background-color: white;
    color: var(--text);
    border: 2px solid var(--accent);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: var(--accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 184, 90, 0.3);
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section-alt {
    background-color: var(--bg-alt);
}

.section h2 {
    font-family: var(--font-header);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
    font-weight: 700;
}

/* Designer Section */
.designer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.designer-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent);
    box-shadow: 0 4px 12px var(--shadow);
}

.designer-text {
    text-align: center;
    max-width: 800px;
}

@media (min-width: 768px) {
    .designer-content {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }
    
    .designer-text {
        text-align: left;
    }
}

.section p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--muted);
}


/* How to Play Section */
.steps-list {
    list-style: none;
    counter-reset: step-counter;
    margin: 2rem 0;
}

.steps-list li {
    counter-increment: step-counter;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background-color: white;
    border-radius: 8px;
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    box-shadow: 0 2px 4px var(--shadow);
    position: relative;
    padding-left: 4rem;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 1rem;
    top: 1.5rem;
    background-color: var(--accent);
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.steps-list strong {
    color: var(--accent);
    font-weight: 600;
}

.tldr {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: 8px;
    border: 2px solid var(--accent);
    box-shadow: 0 2px 4px var(--shadow);
    font-size: 1.1rem;
}

.tldr strong {
    color: var(--accent);
}

/* What's Inside Section */
.components-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.component-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px var(--shadow);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.component-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 12px var(--shadow-hover);
}

.component-card h3 {
    font-family: var(--font-body);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--accent);
    font-weight: 600;
}

.component-card p {
    color: var(--muted);
    margin: 0;
}

/* Hero Cards */
.hero-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.cards-row {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

/* Card Demo Section */
.demo-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.demo-card {
    background-color: white;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 2px 8px var(--shadow);
    border: 1px solid var(--border);
    min-height: 200px;
    position: relative;
    transform-style: preserve-3d;
}

.card-front,
.card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.card-front {
    background-color: white;
    transform: rotateY(0deg);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    z-index: 1;
}

.card-back {
    background-color: var(--bg-alt);
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    z-index: 10;
}

.card-back-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border: 2px solid var(--accent);
    border-radius: 12px;
    padding: 1rem;
    background-color: white;
    box-sizing: border-box;
}

.portrait-card {
    /* Poker card proportions: 2.5" x 3.5" ratio (approximately 5:7 or 0.714) */
    width: 220px;
    height: 308px;
    padding: 0;
    min-height: auto;
    overflow: hidden;
    container-type: inline-size;
}

.demo-card.flipping {
    animation: cardFlip 1.2s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

@keyframes cardFlip {
    0% {
        transform: rotateY(0deg);
    }
    50% {
        transform: rotateY(180deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

.demo-card.flipping {
    animation: cardFlip 1.2s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

/* When card is at 180deg, rotate the back to face forward */
@keyframes flipBack {
    0% {
        transform: rotateY(180deg);
    }
    50% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(180deg);
    }
}

/* Hide front when back is showing - hide earlier on the way to image */
@keyframes hideFront {
    0% {
        opacity: 1;
        visibility: visible;
    }
    30% {
        opacity: 1;
        visibility: visible;
    }
    45% {
        opacity: 0;
        visibility: hidden;
    }
    55% {
        opacity: 0;
        visibility: hidden;
    }
    100% {
        opacity: 1;
        visibility: visible;
    }
}

/* Hide the label specifically during flip - hide immediately */
@keyframes hideLabel {
    0% {
        opacity: 0;
        visibility: hidden;
    }
    45% {
        opacity: 0;
        visibility: hidden;
    }
    55% {
        opacity: 0;
        visibility: hidden;
    }
    100% {
        opacity: 1;
        visibility: visible;
    }
}

.demo-card.flipping .card-back {
    animation: flipBack 1.2s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

.demo-card.flipping .card-front {
    animation: hideFront 1.2s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

/* Animate header color to match card-back during flip - change immediately */
@keyframes blendHeader {
    0% {
        background-color: var(--bg-alt);
    }
    45% {
        background-color: var(--bg-alt);
    }
    55% {
        background-color: var(--bg-alt);
    }
    100% {
        background-color: var(--accent);
    }
}

.demo-card.flipping .card-label {
    animation: blendHeader 1.2s cubic-bezier(0.4, 0.0, 0.2, 1) forwards, hideLabel 1.2s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

.card-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    background-color: var(--accent);
    margin: 0;
    padding: 0;
    font-weight: 600;
    text-align: center;
    flex-shrink: 0;
    border-radius: 12px 12px 0 0;
    height: 3rem; /* Fixed height to ensure alignment */
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    line-height: 1.2;
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
    overflow: hidden;
    min-height: 0;
}

.card-content h3 {
    font-family: var(--font-body);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text);
    font-weight: 600;
}

.portrait-card .card-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: normal; /* Don't break words */
    font-weight: 700;
    font-family: var(--font-header);
    color: var(--accent);
}

/* Chaos card description */
#chaos-description {
    font-size: 0.95rem !important;
    line-height: 1.4 !important;
    font-weight: 400 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: normal !important; /* Don't break words */
    hyphens: auto !important;
}

.card-content p {
    font-size: 1.2rem;
    color: var(--muted);
    margin: 0;
}

.portrait-card .card-content p {
    font-size: 1.1rem;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: normal; /* Don't break words */
    font-weight: 500;
}

/* Word card text - make it bigger but not too bold, uppercase */
#word-text {
    /* Fallback for browsers without container query support */
    font-size: 1.2rem !important;
    font-weight: 500 !important;
    color: var(--text) !important;
    font-family: var(--font-header) !important;
    text-transform: uppercase;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-all; /* Break long words aggressively */
    overflow: hidden;
    /* Container query: scales font size based on card width to prevent wrapping */
    font-size: clamp(0.6rem, 8cqw, 1.4rem) !important;
}

/* Circular progress indicator below cards */
.flip-timer-indicator {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    position: relative;
    margin: 0 auto;
}

.timer-countdown {
    position: absolute;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    font-family: var(--font-body);
    z-index: 10;
}

.timer-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.timer-circle-bg {
    fill: none;
    stroke: var(--border);
    stroke-width: 3;
}

.timer-circle {
    fill: none;
    stroke: var(--accent);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 0.1s linear;
}

#flip-cards-btn {
    margin-top: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Get Updates Section */
.updates-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background-color: var(--bg-alt);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--border);
}

footer p {
    margin-bottom: 0.5rem;
    color: var(--muted);
}

.back-to-top {
    display: inline-block;
    margin-top: 1rem;
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.back-to-top:hover {
    color: var(--accent-dark);
}

/* Responsive Design */
@media (max-width: 767px) {
    header {
        position: static;
    }
    
    nav {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        padding: 0.5rem 0;
    }
    
    .menu-toggle {
        display: flex;
        position: fixed;
        right: 1.5rem;
        top: 1rem;
        z-index: 1000;
        background-color: var(--bg-alt);
        padding: 0.5rem;
        border-radius: 4px;
        box-shadow: 0 2px 8px var(--shadow);
    }
    
    .nav-brand {
        margin: 0;
        padding: 0;
        padding-right: 60px; /* Space for floating hamburger */
        flex: 1;
        display: flex;
        justify-content: center;
    }
    
    .logo {
        margin-top: 0;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-alt);
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
        box-shadow: 0 4px 10px var(--shadow);
        margin-top: 1rem;
        z-index: 102;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: 4px;
        text-align: center;
    }
    
    .nav-links a:hover {
        background-color: var(--bg);
    }
    
    .cards-row {
        flex-wrap: nowrap;
        gap: 0.5rem;
        justify-content: center;
        width: 100%;
        max-width: 100%;
    }
    
    .portrait-card {
        width: calc(50% - 0.25rem);
        max-width: 171px;
        height: 260px;
        flex-shrink: 0;
    }
    
    .card-label {
        height: 2.5rem;
        padding: 0;
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .portrait-card .card-content {
        padding: 0.6rem;
    }
    
    .portrait-card .card-content h3 {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
        line-height: 1.2;
    }
    
    #chaos-description {
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
    }
    
    .portrait-card .card-content p {
        font-size: 0.9rem;
    }
    
    .flip-timer-indicator {
        width: 32px;
        height: 32px;
    }
    
    .game-box-info {
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .game-info-item {
        min-width: 80px;
        padding: 0.5rem 0.75rem;
        flex: 1 1 calc(50% - 0.25rem);
        max-width: calc(50% - 0.25rem);
    }
    
    .game-info-text {
        font-size: 0.7rem;
    }
    
    .game-info-text .number {
        font-size: 1.25rem;
    }
    
    .logo-reassurance {
        flex-wrap: nowrap;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .hero-logo {
        height: 60px;
        width: auto;
        flex-shrink: 0;
    }
    
    .logo-reassurance .cta-text {
        min-width: 0;
        flex: 1;
    }
}

/* Extra small screens - hide logo next to reassurance text */
@media (max-width: 480px) {
    .logo-reassurance .hero-logo {
        display: none;
    }
    
    .logo-reassurance {
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 4rem;
    }

    .tagline {
        font-size: 1.75rem;
    }

    .hero-main-content {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
    
    .signup-form {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .signup-form .cta-header {
        margin-top: 0;
        margin-bottom: 1.5rem;
    }
    
    .hero-cards {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem; /* Reduce gap between game-box-info and cards */
    }
    
    .game-box-info {
        margin-top: 0;
        margin-bottom: 0;
    }
    
    /* Align signup form with cards-row by adding padding equal to game-box-info height + gap */
    .signup-form {
        padding-top: calc(70px + 0.5rem); /* game-box-info height (~70px) + gap (0.5rem) */
    }

    .form-group {
        flex-direction: row;
    }

    .form-group input[type="email"] {
        flex: 1;
    }

    .components-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .demo-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .portrait-card {
        width: 220px;
        height: 308px;
    }
}

@media (min-width: 1024px) {
    .components-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Animation for card flips */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-content {
    animation: fadeIn 0.4s ease;
}

/* Override kit.com button color */
.formkit-form[data-uid="74161f0c83"] .formkit-submit {
    background-color: #FF881D !important;
    color: #000000 !important;
    font-size: 1.1rem !important;
}

.formkit-form[data-uid="74161f0c83"] .formkit-submit:hover,
.formkit-form[data-uid="74161f0c83"] .formkit-submit:focus {
    background-color: #ff9933 !important;
    color: #000000 !important;
}

/* Add exclamation mark to button text */
.formkit-form[data-uid="74161f0c83"] .formkit-submit span:not(.formkit-spinner)::after {
    content: "!";
}

