        .notice-container {
            height: 80vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 20px;
        }

        .icon-box {
            width: 120px;
            height: 120px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .icon-box i {
            font-size: 60px;
            color: #ff3b30; /* iOS Red */
        }

        .notice-title {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 12px;
            color: white;
        }

        .notice-text {
            font-size: 16px;
            color: #8e8e93;
            max-width: 300px;
            line-height: 1.5;
            margin-bottom: 35px;
        }

        .help-section {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 20px;
            border-radius: 24px;
            width: 100%;
            max-width: 350px;
        }

        .help-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: var(--accent);
            color: black;
            text-decoration: none;
            padding: 14px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            transition: transform 0.2s;
        }

        .help-btn:active {
            transform: scale(0.95);
        }

        .back-link {
            margin-top: 20px;
            color: var(--accent);
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
        }