@font-face {
            font-family: 'VitesseSans-Book';
            src: url("https://fonts.cdnfonts.com/s/15119/VitesseSans-Book.woff") format('woff');
            font-weight: normal;
            font-style: normal;
        }

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

        body {
            font-family: VitesseSans-Book, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #060335;
            color: white;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            min-height: 100vh;
        }

        .stoppage-container {
            max-width: 48rem;
            margin: 0 auto;
            padding: 2rem 1rem;
        }

        .stoppage-card {
            background: white;
            color: black;
            border-radius: 0.75rem;
            padding: 1.5rem;
            margin-top: 2rem;
            margin-bottom: 2rem;
        }

        @media (min-width: 640px) {
            .stoppage-card {
                padding: 2rem 3rem;
            }
        }

        .stoppage-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .stoppage-section {
            margin-bottom: 1.5rem;
        }

        .stoppage-section h2 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .stoppage-section p {
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .stoppage-list {
            list-style-type: disc;
            padding-left: 1.5rem;
            margin-bottom: 1rem;
        }

        .stoppage-list li {
            margin-bottom: 0.5rem;
            line-height: 1.5;
        }

        .support-box {
            background: #eff6ff;
            border-left: 4px solid #3b82f6;
            border-radius: 0.25rem;
            padding: 1rem;
            margin-bottom: 1.5rem;
        }

        .support-box h2 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            margin-top: 0;
        }

        .support-box p {
            margin-bottom: 0.5rem;
        }

        .support-box a {
            color: #2563eb;
            text-decoration: underline;
        }

        .info-box {
            background: #f9fafb;
            border-radius: 0.25rem;
            padding: 1rem;
            margin-bottom: 1rem;
        }

        .info-box h3 {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .info-box p {
            font-size: 0.875rem;
            margin-bottom: 0.25rem;
        }

        .info-box .hint {
            font-size: 0.75rem;
            color: #4b5563;
            margin-top: 0.5rem;
        }

        .duration-title {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .duration-options {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .duration-option {
            display: flex;
            align-items: center;
            padding: 1rem;
            border: 2px solid #d1d5db;
            border-radius: 0.5rem;
            cursor: pointer;
            transition: all 0.2s;
        }

        .duration-option:hover {
            border-color: #b91c1c;
        }

        .duration-option.selected {
            border-color: #b91c1c;
            background: #fef2f2;
        }

        .duration-option input[type="radio"] {
            width: 1.25rem;
            height: 1.25rem;
            margin-right: 0.75rem;
            accent-color: #b91c1c;
            cursor: pointer;
        }

        .duration-option span {
            font-weight: 500;
        }

        .confirm-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1rem;
            cursor: pointer;
        }

        .confirm-checkbox input[type="checkbox"] {
            width: 1.25rem;
            height: 1.25rem;
            margin-top: 0.125rem;
            accent-color: #b91c1c;
            cursor: pointer;
        }

        .confirm-checkbox span {
            font-size: 0.875rem;
            line-height: 1.4;
        }

        .confirm-btn {
            width: 100%;
            background: #b91c1c;
            color: white;
            font-weight: 600;
            padding: 0.75rem 1rem;
            border: none;
            border-radius: 0.5rem;
            cursor: pointer;
            font-size: 1rem;
            transition: background-color 0.2s;
        }

        .confirm-btn:hover {
            background: #991b1b;
        }

        .confirm-btn:disabled {
            background: #9ca3af;
            cursor: not-allowed;
        }

        .support-footer {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #e5e7eb;
        }

        .support-footer h2 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .support-footer p {
            font-size: 0.875rem;
        }

        .support-footer a {
            color: #2563eb;
            text-decoration: underline;
        }